This commit is contained in:
Ryan Pandya 2023-05-16 16:53:30 -04:00
parent b9e2e83a26
commit 744ac8845f

View File

@ -1,9 +1,9 @@
FROM node:16 AS appbuild FROM node:16 AS appbuild
WORKDIR /usr/src/app WORKDIR /usr/src/app/lifetracker-vue
COPY lifetracker-vue/package*.json ./ COPY lifetracker-vue ./
RUN npm install RUN npm install
RUN npm run build-only RUN npm run build-only
COPY ./dist ./dist RUN "echo $(ls)"
# Build Stage 2 # Build Stage 2
# This build takes the production build from staging build # This build takes the production build from staging build