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
2
2
COPY frontend /tmp/ssl-game-controller/frontend
3
3
WORKDIR /tmp/ssl-game-controller/frontend
4
4
RUN npm install
5
5
RUN npm run build
6
6
7
- FROM golang:1.19-alpine3.15 AS build_go
7
+ FROM golang:1.20-alpine AS build_go
8
8
WORKDIR /go/src/github.com/RoboCup-SSL/ssl-game-controller
9
9
COPY cmd cmd
10
10
COPY internal internal
@@ -16,7 +16,7 @@ COPY --from=build_node /tmp/ssl-game-controller/frontend/dist frontend/dist
16
16
RUN go install -v ./cmd/ssl-game-controller
17
17
18
18
# Start fresh from a smaller image
19
- FROM alpine:3.17
19
+ FROM alpine:3
20
20
COPY --from=build_go /go/bin/ssl-game-controller /app/ssl-game-controller
21
21
RUN mkdir -p config && chown -R 1000: config
22
22
USER 1000
You can’t perform that action at this time.
0 commit comments