Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
lilkidsuave authored Jun 26, 2024
1 parent a4af753 commit 88667bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM python:3.12-alpine

# Install gcc and other necessary build tools
RUN apk add --no-cache gcc musl-dev libffi-dev
RUN apk add --no-cache gcc musl-dev libffi-dev openssl-dev

EXPOSE 5000

Expand All @@ -19,5 +19,5 @@ RUN python -m pip install -r requirements.txt
WORKDIR /app
COPY . /app

# During debugging, this entry point will be overridden.
CMD ["python", "qbdl_gui.py"]
# Use Gunicorn to run the application
CMD ["gunicorn", "-b", "0.0.0.0:5000", "qbdl_gui:app"]

0 comments on commit 88667bf

Please sign in to comment.