From ecf9733bc19f8103ed3c2e1e0d1a61241362dad7 Mon Sep 17 00:00:00 2001 From: Christian Geisler Date: Fri, 12 Sep 2025 16:56:14 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20fix:=20Add=20missing=20`uploads`?= =?UTF-8?q?=20directory=20to=20Dockerfile=20(#9590)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 65ee9b3bfd..fcdde607b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ RUN \ # Allow mounting of these files, which have no default touch .env ; \ # Create directories for the volumes to inherit the correct permissions - mkdir -p /app/client/public/images /app/api/logs ; \ + mkdir -p /app/client/public/images /app/api/logs /app/uploads ; \ npm config set fetch-retry-maxtimeout 600000 ; \ npm config set fetch-retries 5 ; \ npm config set fetch-retry-mintimeout 15000 ; \ @@ -44,8 +44,6 @@ RUN \ npm prune --production; \ npm cache clean --force -RUN mkdir -p /app/client/public/images /app/api/logs - # Node API setup EXPOSE 3080 ENV HOST=0.0.0.0