Skip to content

Commit

Permalink
dev docker file run npm install instead of ci
Browse files Browse the repository at this point in the history
  • Loading branch information
SanderGi committed Dec 24, 2024
1 parent 60048b0 commit d1344fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ RUN apt-get update -qq && \
apt-get install --no-install-recommends -y build-essential node-gyp pkg-config python-is-python3

# Install node modules
COPY --link package-lock.json ./
RUN npm ci
COPY --link package.json ./
RUN npm install

# Final stage for app image
FROM base
Expand Down

0 comments on commit d1344fb

Please sign in to comment.