mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-11 01:54:34 +08:00
e97566f069
docker files need to be updated as go-builder is built on golang:1.19-alpine3.16 so base image for netmaker/netclient needs to be updated to apline3.16 as well
6 lines
112 B
Text
6 lines
112 B
Text
FROM golang:1.19-alpine3.16
|
|
ARG version
|
|
RUN apk add build-base
|
|
WORKDIR /app
|
|
COPY go.* ./
|
|
RUN go mod download
|