mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-11 18:32:08 +08:00
22 lines
572 B
Text
22 lines
572 B
Text
FROM gravitl/builder:latest as builder
|
|
# add glib support daemon manager
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
ENV GO111MODULE=auto
|
|
|
|
RUN GOOS=linux GOARCH=amd64 CGO_ENABLED=0 /usr/local/go/bin/go build -ldflags="-w -s" -o netclient-app netclient/main.go
|
|
|
|
FROM alpine:3.15.2
|
|
|
|
RUN apk add gcompat iptables && mkdir -p /etc/netclient
|
|
# set the working directory
|
|
WORKDIR /root/
|
|
|
|
COPY --from=builder /app/netclient-app /etc/netclient/netclient
|
|
COPY --from=builder /app/scripts/netclient.sh .
|
|
|
|
RUN chmod 0755 /etc/netclient/netclient && chmod 0755 netclient.sh
|
|
|
|
ENTRYPOINT ["./netclient.sh"]
|