diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 58d5fe1..dfc9903 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -5,7 +5,7 @@ RUN yarn install COPY . . RUN yarn build -FROM nginx:1.24-alpine +FROM nginx:1.25.3-alpine COPY --from=builder /usr/src/app/build /usr/share/nginx/html COPY --from=builder /usr/src/app/nginx/default.conf /etc/nginx/conf.d/default.conf EXPOSE 3000