0e8931a299
* issue fixed * git * fixed finally * ports and suggestions * fix
25 lines
752 B
Docker
25 lines
752 B
Docker
FROM golang:1.10-alpine AS build-env
|
|
RUN apk update && \
|
|
apk upgrade && \
|
|
apk add curl && \
|
|
apk add git
|
|
RUN curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
|
|
COPY . /go/src/storj.io/storj
|
|
RUN cd /go/src/storj.io/storj && dep ensure -vendor-only
|
|
RUN cd /go/src/storj.io/storj/cmd/overlay && go build -o overlay
|
|
|
|
|
|
# final stage
|
|
FROM alpine
|
|
ENV REDIS_ADDRESS= \
|
|
REDIS_PASSWORD= \
|
|
REDIS_DB=0 \
|
|
OVERLAY_PORT=7070 \
|
|
HTTP_PORT=8080
|
|
WORKDIR /app
|
|
COPY --from=build-env /go/src/storj.io/storj/cmd/overlay/overlay /app/
|
|
EXPOSE 8081/udp \
|
|
8080 \
|
|
7070
|
|
|
|
ENTRYPOINT ./overlay --redisAddress=${REDIS_ADDRESS} --redisPassword=${REDIS_PASSWORD} --db=${REDIS_DB} --srvPort=${OVERLAY_PORT} --httpPort=${HTTP_PORT} |