2017-12-12 12:41:01 +01:00
|
|
|
FROM golang:alpine AS build-env
|
|
|
|
LABEL maintainer "Jimmy Zelinskie <jimmyzelinskie@gmail.com>"
|
2016-09-06 00:18:29 +02:00
|
|
|
|
2016-09-21 21:26:21 +02:00
|
|
|
# Install OS-level dependencies.
|
|
|
|
RUN apk update && \
|
|
|
|
apk add curl git && \
|
|
|
|
curl https://glide.sh/get | sh
|
2016-09-06 00:18:29 +02:00
|
|
|
|
2016-09-21 21:26:21 +02:00
|
|
|
# Copy our source code into the container.
|
2016-09-06 00:18:29 +02:00
|
|
|
WORKDIR /go/src/github.com/chihaya/chihaya
|
2017-12-12 12:41:01 +01:00
|
|
|
COPY . /go/src/github.com/chihaya/chihaya
|
2016-09-21 21:26:21 +02:00
|
|
|
|
|
|
|
# Install our golang dependencies and compile our binary.
|
2016-09-06 00:18:29 +02:00
|
|
|
RUN glide install
|
2017-12-12 13:33:20 +01:00
|
|
|
RUN CGO_ENABLED=0 go install github.com/chihaya/chihaya/cmd/chihaya
|
2016-09-06 00:18:29 +02:00
|
|
|
|
2017-12-20 12:51:11 +01:00
|
|
|
FROM alpine:latest
|
2017-12-12 12:41:01 +01:00
|
|
|
COPY --from=build-env /go/bin/chihaya /chihaya
|
2017-12-20 12:51:11 +01:00
|
|
|
|
|
|
|
RUN adduser -D chihaya
|
2016-10-22 05:00:20 +02:00
|
|
|
|
2016-09-21 21:26:21 +02:00
|
|
|
# Expose a docker interface to our binary.
|
2016-09-06 00:18:29 +02:00
|
|
|
EXPOSE 6880 6881
|
2017-12-12 12:41:01 +01:00
|
|
|
|
|
|
|
# Drop root privileges
|
|
|
|
USER chihaya
|
|
|
|
|
|
|
|
ENTRYPOINT ["/chihaya"]
|