From e71387536c4ce904abbe007228feed887b4ca7b8 Mon Sep 17 00:00:00 2001 From: Edward Kirk <ek599@cam.ac.uk> Date: Mon, 13 May 2024 18:09:05 +0100 Subject: [PATCH] fix: re-add missing docker FROM --- example.Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/example.Dockerfile b/example.Dockerfile index 6c1114a..b19b54e 100644 --- a/example.Dockerfile +++ b/example.Dockerfile @@ -1,11 +1,9 @@ # syntax = devthefuture/dockerfile-x # We use the dockerfile-x syntax to demonstrate what would be required from an -# actual application that was using the base Dockerfile. Note that due to the -# docker build's context system this Dockerfile must be build from the parent -# directory, with the command: -# -# $ docker build -f example/Dockerfile . +# actual application that was using the base Dockerfile. + +FROM ./Dockerfile as base COPY example ./example WORKDIR /usr/src/app/example -- GitLab