Skip to content
Snippets Groups Projects
Unverified Commit dedf317a authored by Fredrik Jonsson's avatar Fredrik Jonsson Committed by GitHub
Browse files

Merge pull request #2859 from HyphaApp/fix/docker-build

Install npm global so not replaced with volume mount.
parents d739441c 1ef8dc51
No related branches found
No related tags found
No related merge requests found
...@@ -15,9 +15,10 @@ COPY package.json package-lock.json /usr/local/hypha/ ...@@ -15,9 +15,10 @@ COPY package.json package-lock.json /usr/local/hypha/
# Set owner on /usr/local. # Set owner on /usr/local.
RUN sudo chown -R circleci:circleci /usr/local RUN sudo chown -R circleci:circleci /usr/local
USER circleci
# Install node dependencies. # Install node dependencies.
RUN npm install --quiet RUN npm install --global --quiet
# Install python dependencies. # Install python dependencies.
COPY requirements.txt requirements-dev.txt /usr/local/hypha/ COPY requirements.txt requirements-dev.txt /usr/local/hypha/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment