storj/cmd/satellite/Dockerfile
2018-12-14 12:44:48 +02:00

19 lines
486 B
Docker

ARG CGO_ENABLED=1
ARG REPOSITORY=../storj.io/storj
ARG PACKAGE=storj.io/storj/cmd/satellite
FROM storjlabs/golang as build-env
# final stage
FROM alpine
ENV API_KEY= \
CONF_PATH=/root/.local/share/storj/satellite/config.yaml \
OVERLAY_URL=redis://redis:6379/?db=0 \
BOOTSTRAP_ADDR=bootstrap.storj.io:8080
EXPOSE 7776/udp \
7777 \
8080
WORKDIR /app
COPY --from=build-env /app /app/satellite
COPY cmd/satellite/entrypoint /entrypoint
ENTRYPOINT ["/entrypoint"]