Pygame-story / Dockerfile
om1chael's picture
Update Dockerfile
845a932
raw
history blame contribute delete
228 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:app", "--host", "0.0.0.0", "--port", "7860"]