Skip to content

Commit

Permalink
build image version changed
Browse files Browse the repository at this point in the history
  • Loading branch information
mkcetinkaya committed Nov 19, 2024
1 parent 488ffe3 commit 12267d2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file added .Dockerfile.swp
Binary file not shown.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:alpine as build-stage
FROM node:20.15.1-alpine3.20 as build-stage
ARG REACT_APP_BACKEND_URL
ARG REACT_APP_KEYCLOAK_URL
ARG REACT_APP_KEYCLOAK_REALM
Expand All @@ -12,7 +12,7 @@ COPY . /app
WORKDIR /app
RUN npm install -f -s
ENV NODE_OPTIONS="--max_old_space_size=4096"
RUN npm run build --verbose
RUN npm run build -f --verbose
RUN rm -rf /app/build/static/js/*.map
FROM nginx:alpine as production-stage
COPY --from=build-stage /app/nginx.conf /etc/nginx/conf.d/default.conf
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui",
"version": "0.41.2",
"version": "0.41.3",
"private": true,
"scripts": {
"dev": "GENERATE_SOURCEMAP=false react-scripts start",
Expand Down

0 comments on commit 12267d2

Please sign in to comment.