diff --git a/pica-oh-my-form/Dockerfile b/pica-oh-my-form/Dockerfile
index be0d5c32977d24d10ae766fa4b10e876f7f393f0..2baaaac7035d9d7ad1915f97988de45b26c4e531 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