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 f6cead0 commit edab63fCopy full SHA for edab63f
Dockerfile
@@ -1,17 +1,17 @@
1
-FROM node:15.7.0-alpine3.11 AS build_node
+FROM node:16.14-alpine3.15 AS build_node
2
WORKDIR /tmp/ssl-game-controller
3
COPY . .
4
RUN yarn install
5
RUN yarn build
6
7
-FROM golang:1.17-alpine AS build_go
+FROM golang:1.18-alpine3.15 AS build_go
8
WORKDIR /go/src/github.com/RoboCup-SSL/ssl-game-controller
9
10
COPY --from=build_node /tmp/ssl-game-controller/internal/app/ui/dist internal/app/ui/dist
11
RUN go install -v ./cmd/ssl-game-controller
12
13
# Start fresh from a smaller image
14
-FROM alpine:3.9
+FROM alpine:3.15
15
COPY --from=build_go /go/bin/ssl-game-controller /app/ssl-game-controller
16
COPY config config
17
RUN chown -R 1000: config
0 commit comments