Skip to content

Commit

Permalink
dockerfile port change
Browse files Browse the repository at this point in the history
  • Loading branch information
codekansas committed May 23, 2024
1 parent 5db0a96 commit 5db54c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ COPY . /app
RUN pip install --no-cache-dir --upgrade .

# Expose the port that the application runs on.
EXPOSE 80
EXPOSE 8080

# Run the FastAPI application.
CMD ["fastapi", "run", "store/app/main.py", "--port", "80"]
CMD ["fastapi", "run", "store/app/main.py", "--port", "8080"]

0 comments on commit 5db54c6

Please sign in to comment.