From 7d47c52ba772b4227a08682c6bbfdd56ed2a8d80 Mon Sep 17 00:00:00 2001 From: Krishnakumar Gopalakrishnan Date: Tue, 14 May 2024 12:13:22 +0530 Subject: [PATCH] fix: Dockerfile command order in ENTRYPOINT example --- _episodes/advanced-containers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_episodes/advanced-containers.md b/_episodes/advanced-containers.md index b4737185..934eb24f 100644 --- a/_episodes/advanced-containers.md +++ b/_episodes/advanced-containers.md @@ -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