2021-03-26 00:17:52 +08:00
|
|
|
#first stage - builder
|
2021-11-18 02:32:21 +08:00
|
|
|
FROM golang:1.15-alpine as builder
|
2021-11-17 23:20:41 +08:00
|
|
|
ARG version
|
2021-11-18 02:32:21 +08:00
|
|
|
RUN apk add build-base
|
2021-03-26 00:17:52 +08:00
|
|
|
WORKDIR /app
|
2021-10-07 22:57:06 +08:00
|
|
|
COPY . .
|
2021-05-05 05:36:55 +08:00
|
|
|
ENV GO111MODULE=auto
|
2021-11-17 23:50:44 +08:00
|
|
|
RUN GOOS=linux CGO_ENABLED=1 go build -ldflags="-s -X 'main.version=$version'" -o netmaker main.go
|
2021-10-07 22:57:06 +08:00
|
|
|
FROM alpine:3.13.6
|
|
|
|
# add a c lib
|
|
|
|
RUN apk add gcompat iptables
|
|
|
|
# set the working directory
|
2021-05-05 05:36:55 +08:00
|
|
|
WORKDIR /root/
|
2021-10-07 22:57:06 +08:00
|
|
|
RUN mkdir -p /etc/netclient/config
|
|
|
|
COPY --from=builder /app/netmaker .
|
2021-03-26 00:17:52 +08:00
|
|
|
COPY --from=builder /app/config config
|
|
|
|
EXPOSE 8081
|
|
|
|
EXPOSE 50051
|
2021-10-07 22:57:06 +08:00
|
|
|
ENTRYPOINT ["./netmaker"]
|