summaryrefslogtreecommitdiff
path: root/doc/tutorial
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tutorial')
-rw-r--r--doc/tutorial/just-execute.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/tutorial/just-execute.org b/doc/tutorial/just-execute.org
index 912fd4bd..5605dcd8 100644
--- a/doc/tutorial/just-execute.org
+++ b/doc/tutorial/just-execute.org
@@ -458,14 +458,14 @@ RUN apt install -y --no-install-recommends \
RUN git clone https://github.com/just-buildsystem/justbuild.git
# use a well defined commit to foster reproducibility
RUN git checkout 246e1b7f28f319e4be5bd24466494e6b5868ca6f
-RUN cd justbuild && ./bin/bootstrap.py . /just-boostrapped
+RUN cd justbuild && ./bin/bootstrap.py . /just-bootstrapped
# Stage 2: setup the required environment and run just execute
#
FROM debian:bullseye-slim
# Copy the binary from the build container
-COPY --from=build /just-boostrapped/out/bin/just /bin/just
+COPY --from=build /just-bootstrapped/out/bin/just /bin/just
# the environment created for this example happens to satisfy the
# run-time dependencies of just remember to double check it with your