You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Stage 1
|
|
|
|
|
|
FROM node:16-alpine3.14 as build-step
|
|
|
|
RUN mkdir -p /app
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json /app
|
|
|
|
RUN npm install
|
|
|
|
COPY . /app
|
|
|
|
RUN npm run build --prod
|
|
|
|
# Stage 2
|
|
|
|
FROM nginx:1.17.1-alpine
|
|
|
|
COPY --from=build-step /app/dist/Collaborateur-Epa-Front /usr/share/nginx/html
|
|
|