Skip to content

Commit

Permalink
chore: bump container images
Browse files Browse the repository at this point in the history
  • Loading branch information
soofstad committed Dec 4, 2023
1 parent 5e00c3f commit 081bfab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM nginxinc/nginx-unprivileged:1.23-alpine
FROM nginxinc/nginx-unprivileged:1.25-alpine
COPY default.nginx /etc/nginx/conf.d/default.conf
USER 1000
4 changes: 2 additions & 2 deletions web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine as base
FROM node:20-alpine as base
ENV [email protected]
ENV REACT_APP_CLIENT_ID=1dbc1e96-268d-41ad-894a-92a9fb85f954
ENV REACT_APP_SCOPES="api://lost-circulation-material-api/Optimization.All.All"
Expand All @@ -16,7 +16,7 @@ CMD ["yarn", "start"]
FROM base as build
RUN yarn build

FROM node:18-alpine as prod
FROM node:20-alpine as prod
RUN npm install -g serve
COPY --from=build /code/build /code/build
EXPOSE 3000
Expand Down

0 comments on commit 081bfab

Please sign in to comment.