From 7c1e9fa2e80f4a2414c8acd3cc0d7eb9ea867365 Mon Sep 17 00:00:00 2001 From: Quentin Duchemin <quentinduchemin@tuta.io> Date: Sun, 8 Dec 2019 18:29:57 +0100 Subject: [PATCH] Fix bad instructions order --- pica-oh-my-form/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pica-oh-my-form/Dockerfile b/pica-oh-my-form/Dockerfile index be0d5c32..2baaaac7 100644 --- a/pica-oh-my-form/Dockerfile +++ b/pica-oh-my-form/Dockerfile @@ -12,8 +12,8 @@ RUN apk add --no-cache python=2.7.16-r1 \ && npm cache clean --force RUN wget -O omf.tar.gz https://github.com/ohmyform/ohmyform/archive/${OHMYFORM_VERSION}.tar.gz \ - && tar --strip-components=1 -x -f omf.tar.gz -C /opt/app \ && mkdir -p /opt/app/public/lib \ + && tar --strip-components=1 -x -f omf.tar.gz -C /opt/app \ && chown -R ohmyform:ohmyform /opt/app WORKDIR /opt/app -- GitLab