Update Dockerfile

chore: adding recursive flag for the WORKDIR directory
This commit is contained in:
Simeon Emanuilov 2024-02-24 21:13:24 +02:00 committed by GitHub
parent 052330272a
commit 652ca6785f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -117,7 +117,7 @@ COPY --chown=django:django . ${APP_HOME}
{%- endif %} {%- endif %}
# make django owner of the WORKDIR directory as well. # make django owner of the WORKDIR directory as well.
RUN chown django:django ${APP_HOME} RUN chown -R django:django ${APP_HOME}
USER django USER django