Skip to content

Commit

Permalink
Fix: Container image not building
Browse files Browse the repository at this point in the history
  • Loading branch information
timoklimmer committed Oct 9, 2023
1 parent 5f183f1 commit cfd1fb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM python:3.12-slim
FROM python:3.11-slim

# tell the host we are running on port 8000
# note: we intentionally run on a port >= 1024 here because lower ports needed special treatment
EXPOSE 8000

# keep Python from generating .pyc files
# keep Python from generating .pyc files
# note: those files won't be needed in a container where a process is run only once.
ENV PYTHONDONTWRITEBYTECODE=1

Expand Down

0 comments on commit cfd1fb0

Please sign in to comment.