ekster/Dockerfile.alpine

13 lines
289 B
Docker
Raw Normal View History

2018-05-16 18:10:23 +00:00
# build stage
FROM golang:1.10.2-alpine3.7 AS build-env
RUN apk --no-cache add git
RUN go get github.com/pstuifzand/ekster/cmd/eksterd
# final stage
FROM alpine
RUN apk --no-cache add ca-certificates
WORKDIR /app
EXPOSE 80
COPY --from=build-env /go/bin/eksterd /app/
ENTRYPOINT ./eksterd