Skip to content

Commit edab63f

Browse files
committed
Update docker base images
1 parent f6cead0 commit edab63f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
FROM node:15.7.0-alpine3.11 AS build_node
1+
FROM node:16.14-alpine3.15 AS build_node
22
WORKDIR /tmp/ssl-game-controller
33
COPY . .
44
RUN yarn install
55
RUN yarn build
66

7-
FROM golang:1.17-alpine AS build_go
7+
FROM golang:1.18-alpine3.15 AS build_go
88
WORKDIR /go/src/github.com/RoboCup-SSL/ssl-game-controller
99
COPY . .
1010
COPY --from=build_node /tmp/ssl-game-controller/internal/app/ui/dist internal/app/ui/dist
1111
RUN go install -v ./cmd/ssl-game-controller
1212

1313
# Start fresh from a smaller image
14-
FROM alpine:3.9
14+
FROM alpine:3.15
1515
COPY --from=build_go /go/bin/ssl-game-controller /app/ssl-game-controller
1616
COPY config config
1717
RUN chown -R 1000: config

0 commit comments

Comments
 (0)