Fix docker build

This commit is contained in:
Gabriel Augendre 2023-03-25 20:44:02 +01:00
parent 16ddc07429
commit b691551e5b
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ ENV DB_BASE_DIR "/app/db"
RUN python -m pip install --no-cache-dir -r requirements.txt
WORKDIR /app/src
RUN python manage.py collectstatic --noinput --clear
RUN python ./src/manage.py compilemessages -l fr -l en
RUN python manage.py compilemessages -l fr -l en
EXPOSE 8000