From 994cbbdbfc7f93c08ad6310418a026a5aabd1fe2 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Wed, 8 Nov 2023 16:05:36 +0100 Subject: [PATCH] explicit mkdir --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8b785f2..b76af37 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,8 @@ FROM alpine:latest RUN apk add --no-cache \ git \ openssh-client \ - iputils-ping + iputils-ping \ + && mkdir /app # Copy the script into the container COPY app.sh /app/app.sh