Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle
2018-09-14 15:22:09 -04:00
parent 1f61f46611
commit e1b48daaae
4 changed files with 40 additions and 68 deletions

View File

@@ -1,29 +1,25 @@
FROM alpine:latest as builder
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 buildDeps=' \
go \
git \
gcc \
g++ \
libc-dev \
libgcc \
make \
' \
set -x \
&& apk --no-cache add $buildDeps \
&& git clone --depth 1 --branch "$MICRO_VERSION" https://github.com/zyedidia/micro /go/src/github.com/zyedidia/micro \
&& cd /go/src/github.com/zyedidia/micro \
&& mkdir -p /go/bin \
&& make install \
&& echo "Build complete."
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" ]