Skip to content

Commit

Permalink
Merge pull request #156 from Sanketika-Obsrv/release-1.3.1
Browse files Browse the repository at this point in the history
Release 1.3.1 to main
  • Loading branch information
manjudr authored Jan 7, 2025
2 parents 8ee2590 + 5eb58b6 commit 6105c54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@

# Stage 1 - Build the React client v2
FROM --platform=linux/amd64 node:20.10-alpine AS clientv2-build
FROM --platform=linux/amd64 node:23.4-alpine AS clientv2-build
WORKDIR /opt/app/web-console-v2
COPY ./web-console-v2/package.json .
RUN npm install --legacy-peer-deps
COPY ./web-console-v2/ .
RUN npm run build

# Stage 2 - Run the Node.js server
FROM --platform=linux/amd64 node:20.10-alpine AS server-build
FROM --platform=linux/amd64 node:23.4-alpine AS server-build
WORKDIR /opt/app/server
COPY ./package.json .
RUN npm install
Expand Down

0 comments on commit 6105c54

Please sign in to comment.