Pygame-story / Dockerfile
om1chael's picture
Update Dockerfile
cc897d6
raw
history blame
227 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /Code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /Code/requirements.txt
COPY . .
CMD ["uvicorn", "Code/app.py", "--host", "0.0.0.0", "--port", "7860"]