Skip to content
Snippets Groups Projects
Commit 79e7ccc5 authored by Homar Franquesa Agil's avatar Homar Franquesa Agil
Browse files

Add new file

parent 10fedeaf
No related branches found
No related tags found
No related merge requests found
FROM node:10 AS builder
WORKDIR /app
COPY ./package.json ./
RUN npm install
COPY . .
RUN npm run build
FROM node:10-alpine
WORKDIR /app
COPY --from=builder /app ./
CMD ["npm", "run", "start:prod"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment