File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1- FROM node:16.15-alpine3.15 AS build_node
1+ FROM node:18-alpine AS build_node
22COPY frontend /tmp/ssl-game-controller/frontend
33WORKDIR /tmp/ssl-game-controller/frontend
44RUN npm install
55RUN npm run build
66
7- FROM golang:1.19-alpine3.15 AS build_go
7+ FROM golang:1.20-alpine AS build_go
88WORKDIR /go/src/github.com/RoboCup-SSL/ssl-game-controller
99COPY cmd cmd
1010COPY internal internal
@@ -16,7 +16,7 @@ COPY --from=build_node /tmp/ssl-game-controller/frontend/dist frontend/dist
1616RUN go install -v ./cmd/ssl-game-controller
1717
1818# Start fresh from a smaller image
19- FROM alpine:3.17
19+ FROM alpine:3
2020COPY --from=build_go /go/bin/ssl-game-controller /app/ssl-game-controller
2121RUN mkdir -p config && chown -R 1000: config
2222USER 1000
You can’t perform that action at this time.
0 commit comments