From 32c61a7c442fd79d6617115ae7cef85a4ee5caa1 Mon Sep 17 00:00:00 2001 From: cant-code Date: Tue, 26 Mar 2024 21:33:14 +0530 Subject: [PATCH] Fix folder creation issue --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 0e60566..8a9445b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,9 @@ RUN adduser \ --uid "${UID}" \ appuser +#Create application dir +RUN mkdir /home/application + # Copy the executable from the "build" stage. COPY ./bin/app /home/application