Files
minesweeper-py/Dockerfile
2025-10-20 21:18:42 +03:00

14 lines
244 B
Docker

FROM python:3.14
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
COPY . /app/
CMD ["python3", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "80"]