Skip to content

Commit

Permalink
Fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
cyri113 committed Sep 13, 2024
1 parent a1542a0 commit 6785970
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM python:3.12-bullseye AS base
WORKDIR /project
COPY . .
RUN pip3 install -no-cache-dir --upgrade -r requirements.txt
RUN pip3 install --no-cache-dir --upgrade -r requirements.txt

FROM base AS prod
CMD ["fastapi", "run", "app/main.py", "--port", "80"]

0 comments on commit 6785970

Please sign in to comment.