Skip to content

Commit

Permalink
chore: Update node version
Browse files Browse the repository at this point in the history
  • Loading branch information
nileger committed Jan 13, 2024
1 parent 0f0671e commit 851f6ba
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
Expand Up @@ -7,12 +7,12 @@ COPY ./backend/*.go ./
COPY ./backend/docs ./docs
RUN go build -o bin/main

FROM node:13.12.0-alpine as react-builder
FROM node:20.11.0-alpine as react-builder
WORKDIR /app
COPY ./frontend/package.json ./
COPY ./frontend/package-lock.json ./
RUN npm ci --silent \
&& npm install react-scripts@3.4.1 -g --silent
&& npm install react-scripts@5.0.1 -g --silent
COPY ./frontend ./
RUN npm run build

Expand Down

0 comments on commit 851f6ba

Please sign in to comment.