yysb / Dockerfile
xxiani's picture
Update Dockerfile
3302d84
raw
history blame contribute delete
No virus
206 Bytes
FROM python:3.10
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . /app
EXPOSE 23456
CMD ["python", "/app/app.py"]