From 722e9af1e4a18de472e7e61f58d896655863255e Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Thu, 12 Mar 2020 16:13:58 +0100 Subject: [PATCH] Revert "Just use the $WORKDIR" This reverts commit 487fb34b68e999ac0d96c728cb2499b1dbdd8b3f. Remembered that we can't rely on WORKDIR if it is set upstream and then we have to hard code that in the app.json. So, stick with the /app/ folder for now. --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 3973558..7f49eea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,4 +2,7 @@ FROM gitea/gitea:1.11.2 COPY . ${WORKDIR} +RUN mkdir -p /app/ +COPY postdeploy.sh /app/ + EXPOSE 3000