diff --git a/infra/docker/Dockerfile b/infra/docker/Dockerfile index a3f7e17..18f8f2e 100644 --- a/infra/docker/Dockerfile +++ b/infra/docker/Dockerfile @@ -24,7 +24,7 @@ COPY . /usr/src/app RUN yarn test && yarn build # production -FROM nginx:stable-alpine as production +FROM nginx:mainline-alpine as production COPY --from=build /usr/src/app/publish /usr/share/nginx/html EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]