Skip to content
Snippets Groups Projects
Verified Commit 1f129205 authored by Ole Binder's avatar Ole Binder
Browse files

Fix: remove {} from RUN as this is not supported

The docker RUN uses /bin/sh as the default, this does not support curly braces. aura#308
parent 3e6641f2
No related branches found
No related tags found
No related merge requests found
Pipeline #7558 passed
......@@ -40,7 +40,11 @@ RUN adduser --home /app --no-create-home --system --uid ${AURA_UID} --group app
# containers. We therefore create them here and set the permissions right away
# since named volumes otherwise create these directories themself as the root
# user.
mkdir -p /app/{logs,static/admin,site_media} && \
mkdir -p \
/app/site_media \
/app/static/admin \
/app/logs \
&& \
chown -R app:app /app
USER app
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment