Compare commits

..

No commits in common. "5a34bf38acba1f23b605430f2687a0a3e09192f6" and "47d178472f38cbe00734fc06b738af3d921e40f5" have entirely different histories.

View file

@ -1,7 +1,7 @@
# build stage
FROM node:lts-alpine AS build-stage
WORKDIR ./app
COPY package.json ./
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm i
COPY . .
RUN npm run build