dockerfiles/micro/Dockerfile
Jess Frazelle e1b48daaae
cleanup
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-09-14 15:22:09 -04:00

26 lines
557 B
Docker

FROM golang:alpine as builder
LABEL maintainer "Christian Koep <christiankoep@gmail.com>"
RUN apk --no-cache add \
ca-certificates \
git \
make
ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go
ENV MICRO_VERSION nightly
RUN git clone --depth 1 --branch "$MICRO_VERSION" https://github.com/zyedidia/micro /go/src/github.com/zyedidia/micro
WORKDIR /go/src/github.com/zyedidia/micro
RUN make install
FROM alpine:latest
COPY --from=builder /go/bin/micro /usr/bin/micro
COPY --from=builder /etc/ssl/certs/ /etc/ssl/certs
ENTRYPOINT [ "micro" ]