diff --git a/Dockerfile b/Dockerfile index d1512d4..6e8d36a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # étape de build -FROM node:lts-fermium as build-stage +FROM node:lts-alpine as build-stage WORKDIR /app COPY package*.json ./ RUN yarn install @@ -7,6 +7,6 @@ COPY . . RUN yarn run build # étape de production -FROM node:lts-fermium as production-stage +FROM node:lts-alpine as production-stage COPY --from=build-stage /app/dist ./dist CMD ["node", "dist/main"] \ No newline at end of file