1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/ggr/Dockerfile

16 lines
395 B
Docker
Raw Normal View History

2019-11-02 20:34:23 +00:00
#
# Dockerfile for ggr
#
FROM golang:alpine
RUN apk add --no-cache git
RUN go get -v github.com/kelseyhightower/confd
FROM aerokube/ggr
RUN apk add --no-cache libxml2-utils supervisor
COPY --from=0 /go/bin/confd /usr/bin/
COPY data/confd /etc/confd
COPY data/supervisor.d /etc/supervisor.d
COPY data/grid-router /etc/grid-router
ENTRYPOINT ["supervisord", "-n", "-c", "/etc/supervisord.conf"]