netmaker/Dockerfile

23 lines
547 B
Docker
Raw Normal View History

2021-03-26 00:17:52 +08:00
#first stage - builder
2022-04-22 18:51:09 +08:00
FROM gravitl/go-builder as builder
2022-09-15 02:33:08 +08:00
ARG version
ARG tags
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-12-12 01:13:41 +08:00
2022-09-15 02:33:08 +08:00
RUN apk add git
RUN GOOS=linux CGO_ENABLED=1 go build ${tags} -ldflags="-s -X 'main.version=${version}'" .
# RUN go build -tags=ee . -o netmaker main.go
2022-03-28 21:49:21 +08:00
FROM alpine:3.15.2
2021-12-12 01:14:55 +08:00
2021-10-07 22:57:06 +08:00
# add a c lib
2022-02-26 07:04:42 +08:00
RUN apk add gcompat iptables wireguard-tools
2021-10-07 22:57:06 +08:00
# 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
2021-10-07 22:57:06 +08:00
ENTRYPOINT ["./netmaker"]