Skip to content

Commit

Permalink
Update example Dockerfile to not specify an architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisLovering committed Oct 23, 2023
1 parent aac1337 commit b995f64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/Dockerfile.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=linux/amd64 ghcr.io/owl-corp/python-poetry-base:3-slim
FROM ghcr.io/owl-corp/python-poetry-base:3-slim

# Install project dependencies
WORKDIR /my-app
Expand All @@ -8,5 +8,5 @@ RUN poetry install
# Copy the source code in last to optimize rebuilding the image
COPY . .

ENTRYPOINT ["poetry"]
CMD ["run", "python", "-m", "app"]
ENTRYPOINT ["poetry", "run"]
CMD ["python", "-m", "app"]

0 comments on commit b995f64

Please sign in to comment.