mirror of
https://github.com/dragonheim/gagent.git
synced 2025-01-30 21:06:27 -08:00
James Wells
7d6fbfef24
Quite a refactor and some code cleanup. Co-authored-by: James Wells <jwells@dragonheim.net> Reviewed-on: #11 Co-authored-by: James Wells <jwells@noreply.localhost> Co-committed-by: James Wells <jwells@noreply.localhost>
28 lines
676 B
Docker
28 lines
676 B
Docker
FROM golang:1.16-alpine3.12 as builder
|
|
|
|
WORKDIR /gagent
|
|
COPY . .
|
|
|
|
ARG GOOS=${GOOS:-linux}
|
|
# ARG GOARCH=${GOARCH:-amd64}
|
|
ARG CGO_ENABLED=1
|
|
|
|
RUN apk add --no-cache zeromq-dev build-base git
|
|
RUN go build -o /gagent/bin/gagent gagent/main.go
|
|
RUN strip /gagent/bin/gagent
|
|
|
|
|
|
FROM alpine:3.12
|
|
LABEL Name="G'Agent"
|
|
LABEL Maintainer="jwells@dragonheim.net"
|
|
LABEL License="MIT License"
|
|
RUN apk add --no-cache zeromq && mkdir -p -m 0700 /etc/gagent
|
|
|
|
COPY --from=builder /gagent/examples/gagent.hcl /etc/gagent/gagent.hcl
|
|
COPY --from=builder /gagent/bin/gagent /usr/bin/
|
|
|
|
# Router Client Worker
|
|
EXPOSE 35570/tcp 35571/tcp 35572/tcp
|
|
VOLUME /etc/gagent
|
|
|
|
CMD ["/usr/bin/gagent"]
|