diff --git a/Dockerfile b/Dockerfile index 41eedb9..ff3e38b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,5 +16,8 @@ COPY . /app/ # running migrations RUN python manage.py migrate +# collect static +RUN python manage.py collectstatic + # gunicorn CMD ["gunicorn", "--bind", "0.0.0.0:8000", "core.wsgi:application"]