Skip to content

Commit

Permalink
fix: Dockerfile command order in ENTRYPOINT example
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnakumarg1984 committed May 14, 2024
1 parent 0a3b503 commit 7d47c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _episodes/advanced-containers.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ command line, use the keyword `ENTRYPOINT` in the `Dockerfile`.
~~~
FROM alpine

COPY sum.py /home
RUN apk add --update python3 py3-pip python3-dev
COPY sum.py /home

# Run the sum.py script as the default command and
# allow people to enter arguments for it
Expand Down

0 comments on commit 7d47c52

Please sign in to comment.