ekster/Dockerfile.alpine

15 lines
381 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
RUN ["mkdir", "-p", "/opt/micropub"]
WORKDIR /opt/micropub
2018-05-16 18:10:23 +00:00
EXPOSE 80
COPY --from=build-env /go/bin/eksterd /app/
2018-06-30 08:39:14 +00:00
COPY --from=build-env /go/bin/ek /app/
ENTRYPOINT ["/app/eksterd"]