We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 913d582 commit f2332daCopy full SHA for f2332da
Dockerfile
@@ -10,7 +10,6 @@ FROM base as development
10
ENV NODE_ENV development
11
COPY package.json package-lock.json ./
12
RUN npm install
13
-RUN npm rebuild node-sass
14
COPY .babelrc index.js nodemon.json ./
15
COPY ./webpack ./webpack
16
COPY client ./client
@@ -27,6 +26,5 @@ FROM base as production
27
26
ENV NODE_ENV=production
28
COPY package.json package-lock.json index.js ./
29
RUN npm install --production
30
31
COPY --from=build $APP_HOME/dist ./dist
32
CMD ["npm", "run", "start:prod"]
0 commit comments