Skip to content

Commit

Permalink
Add missing backslashes to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-misuk-valor authored and domdinicola committed Feb 28, 2025
1 parent 6e44b38 commit f0241f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,9 @@ ENV PATH=/code/.venv/bin:/usr/local/bin/:/usr/bin:/bin \
DJANGO_SETTINGS_MODULE=hope_dedup_engine.config.settings \
PYTHONPATH="" \
PYTHONDBUFFERED=1 \
PYTHONDONTWRITEBYTCODE=1
MEDIA_ROOT="${MEDIA_ROOT:-/var/run/app/media}"
STATIC_ROOT="${STATIC_ROOT:-/var/run/app/static}"
PYTHONDONTWRITEBYTCODE=1 \
MEDIA_ROOT="${MEDIA_ROOT:-/var/run/app/media}" \
STATIC_ROOT="${STATIC_ROOT:-/var/run/app/static}" \
DEFAULT_ROOT="${DEFAULT_ROOT:-/var/run/app/default}"

RUN <<EOF cat> /RELEASE
Expand Down

0 comments on commit f0241f2

Please sign in to comment.