odin-codespace/memory-game/mg-backend/Dockerfile

12 lines
227 B
Text
Raw Normal View History

2024-08-08 15:33:46 -04:00
FROM python:3.12
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY ./app /code/app
CMD ["fastapi", "run", "app/main.py", "--port", "80"]