From 847ad61b8df8cc52589f319bada3f357cd6208ce Mon Sep 17 00:00:00 2001 From: Jesper Zedlitz Date: Mon, 22 Jul 2024 08:35:12 +0200 Subject: [PATCH] Update Dockerfile create tmp directory for the screenshots --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 606e3db..54a4843 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,9 @@ RUN apk upgrade --update && apk --no-cache add git gcc make g++ zlib-dev libjpeg # Create the results directory and assign nobody:nogroup as the owner RUN mkdir -p /usr/src/ylt/results && chown -R nobody:nogroup /usr/src/ylt/results +# Create the directory for the screenshots and assign nobody:nogroup as the owner +RUN mkdir -p /usr/src/ylt/tmp && chown -R nobody:nogroup /usr/src/ylt/tmp + # Add the volume for results VOLUME /usr/src/ylt/results