Skip to content

Commit

Permalink
fix(cicd): bind gunicorn also on ipv6
Browse files Browse the repository at this point in the history
  • Loading branch information
thejoeejoee committed Nov 11, 2023
1 parent c60be96 commit 891ed56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ RUN bash -c "DJANGO_SECRET_KEY=\$RANDOM DJANGO_CONFIGURATION=LocalProduction pyt
COPY --from=webpack-stable /usr/src/build/webpack-stats.json ${DJANGO_BUILD_DIR}

# TODO: check opts https://www.uvicorn.org/#command-line-options
CMD ["python -m gunicorn fiesta.wsgi:application"]
CMD ["python -m gunicorn -b :8000 fiesta.wsgi:application"]

#
# proxy image
Expand Down

0 comments on commit 891ed56

Please sign in to comment.