Skip to content

Commit

Permalink
feat: upgrade to Node.js 18 and Go 1.20 in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
hsluoyz committed Dec 22, 2023
1 parent 02329d3 commit 141f22a
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,10 +1,10 @@
FROM node:16.18.0 AS FRONT
FROM node:18.19.0 AS FRONT
WORKDIR /web
COPY ./web .
RUN yarn install --frozen-lockfile --network-timeout 1000000 && yarn run build


FROM golang:1.19.9 AS BACK
FROM golang:1.20.12 AS BACK
WORKDIR /go/src/casdoor
COPY . .
RUN ./build.sh
Expand Down

0 comments on commit 141f22a

Please sign in to comment.