diff --git a/{{cookiecutter.repo_name}}/Dockerfile b/{{cookiecutter.repo_name}}/Dockerfile index 355102157..abfd5c1d4 100644 --- a/{{cookiecutter.repo_name}}/Dockerfile +++ b/{{cookiecutter.repo_name}}/Dockerfile @@ -29,9 +29,9 @@ RUN groupadd -r django && useradd -r -g django django ADD . /app RUN npm install -g grunt grunt-cli -RUN npm install -RUN grunt build +RUN cd /app && npm install +RUN cd /app && grunt build RUN chown -R django /app @@ -43,4 +43,4 @@ RUN chmod +x /gunicorn.sh && chown django /gunicorn.sh WORKDIR /app -ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["/entrypoint.sh"]