Skip to content

Commit

Permalink
Fix: Changed script order in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
katporks committed Nov 11, 2023
1 parent 86185e4 commit 36090d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ COPY --chown=wagtail:wagtail entrypoint.dev.sh /app/entrypoint.dev.sh
# Make the entrypoint script executable
RUN chmod +x /app/entrypoint.dev.sh

# Use user "wagtail" to run the build commands below and the server itself.
USER wagtail

# Copy the wait-for-it script
COPY wait-for-it.sh /app/wait-for-it.sh

# Make the script executable
RUN chmod +x /app/wait-for-it.sh

# Use user "wagtail" to run the build commands below and the server itself.
USER wagtail

# # Collect static files.
# RUN python manage.py collectstatic --noinput --clear

Expand Down

0 comments on commit 36090d8

Please sign in to comment.