Skip to content

Commit

Permalink
Update Dockerfile.CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tot-ra authored Oct 27, 2022
1 parent f14e2ed commit 6c6a187
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.CI
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ENV npm_config_cache=/tmp/.npm
WORKDIR /app
COPY git_src/package.json git_src/package-lock.json ./
RUN npm install
COPY git_src/webpack.config.js git_src/babel.config.js git_src/tsconfig.json ./
COPY git_src/webpack.config.js git_src/babel.config.js git_src/tsconfig.json git_src/.eslintrc git_src/.editorconfig ./
COPY git_src/client ./client
RUN npm run build-frontend

Expand All @@ -14,7 +14,7 @@ FROM node:16-alpine as builder-backend
ARG env=production
ENV npm_config_cache=/tmp/.npm
WORKDIR /app
COPY git_src/package.json git_src/package-lock.json git_src/tsconfig.json git_src/webpack.config.js git_src/.eslintrc git_src/.editorconfig ./
COPY git_src/package.json git_src/package-lock.json git_src/tsconfig.json git_src/webpack.config.js ./
RUN npm install
COPY git_src/src ./src
RUN npm run build-backend
Expand Down

0 comments on commit 6c6a187

Please sign in to comment.