fix images
continuous-integration/drone/push Build is passing Details

main
Lucas DELANIER 11 months ago
parent 831d601417
commit c9ce9783e2

@ -1,18 +1,7 @@
# first stage builds vue
FROM node:16 as build-stage
WORKDIR /build
COPY . .
RUN npm install
RUN npm run build
FROM node:lts-alpine
# second stage copies the static dist files and Node server files
FROM node:16 as production-stage
WORKDIR /app
COPY package.json vueBaseAppServer.js ./
COPY --from=build-stage /build/dist/ dist/
RUN npm install --omit=dev
RUN rm -rf build
COPY . ./
RUN npm install
# open port 3000 and run Node server
EXPOSE 3000
CMD [ "node", "main.js" ]
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]
Loading…
Cancel
Save