Skip to content

Commit

Permalink
Merge pull request #215 from krishnakumarg1984/kg/fix_dockerfile_order
Browse files Browse the repository at this point in the history
fix: Dockerfile command order in ENTRYPOINT example
  • Loading branch information
aturner-epcc authored May 14, 2024
2 parents d82f867 + 7d47c52 commit 15b3b4f
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 15b3b4f

Please sign in to comment.