diff options
author | 2023-10-23 11:16:01 +0100 | |
---|---|---|
committer | 2023-10-23 11:16:01 +0100 | |
commit | b995f6424d87fd8107471d5f1436c0537c350009 (patch) | |
tree | 1358fbfb342d4fb7dd623cee991ce88b96a84981 | |
parent | Fix spelling error in docker-compose example (diff) |
Update example Dockerfile to not specify an architecture
-rw-r--r-- | examples/Dockerfile.example | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/Dockerfile.example b/examples/Dockerfile.example index a80d23d..af9f530 100644 --- a/examples/Dockerfile.example +++ b/examples/Dockerfile.example @@ -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 @@ -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"] |