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.
TemperatureCheckerFront/DockerFile

13 lines
335 B

4 years ago
# étape de build
FROM node:lts-alpine as build-stage
WORKDIR /app
COPY TempCheckerFront/package*.json ./
RUN npm install
COPY TempCheckerFront/. .
RUN npm run build
# étape de production
FROM nginx:stable-alpine as production-stage
COPY --from=build-stage /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]