Create static directory in Dockerfile

This commit is contained in:
Mark Veidemanis 2022-10-15 22:49:33 +01:00
parent 2fb671fce4
commit 9ee0f27aa0
Signed by: m
GPG Key ID: 5ACFCEED46C0904F
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ RUN useradd -d /code xf
RUN mkdir -p /code RUN mkdir -p /code
RUN chown -R xf:xf /code RUN chown -R xf:xf /code
RUN mkdir /conf RUN mkdir -p /conf/static
RUN chown xf:xf /conf RUN chown xf:xf /conf
RUN mkdir /venv RUN mkdir /venv