Compare commits

..

No commits in common. "9ed082eb4c9918249d663d50126b33951d6760af" and "1498ca388a897f9c65a568e9700a0c0f2729d22d" 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