We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aa1479 commit e57f538Copy full SHA for e57f538
Dockerfile
@@ -1,10 +1,9 @@
1
-FROM node:16.18.0 AS FRONT
+FROM node:18.19.0 AS FRONT
2
WORKDIR /web
3
COPY ./web .
4
-RUN yarn config set registry https://registry.npmmirror.com
5
RUN yarn install --frozen-lockfile --network-timeout 1000000 && yarn run build
6
7
-FROM golang:1.19.9 AS BACK
+FROM golang:1.20.12 AS BACK
8
WORKDIR /go/src/caswaf
9
COPY . .
10
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o server . \
0 commit comments