Browse Source

Dockerfile: move all npm steps

pull/999/head
Philip H 12 months ago
parent
commit
6e7f2f730e
  1. 5
      Dockerfile

5
Dockerfile

@ -6,6 +6,8 @@ WORKDIR /app
RUN npm ci --omit=dev &&\
# Enable this to run `npm run serve`
npm i -g nodemon &&\
# Delete unnecessary files
npm cache clean --force && rm -rf ~/.npm
mv node_modules /node_modules
# Copy build result to a new image.
@ -22,9 +24,6 @@ COPY --from=build_node_modules /app /app
# than what runs inside of docker.
COPY --from=build_node_modules /node_modules /node_modules
# Delete unnecessary files
RUN npm cache clean --force && rm -rf ~/.npm
# Install Linux packages
RUN apk add --no-cache \
dpkg \

Loading…
Cancel
Save