75c64035a2
* Normalize the dockerfiles and entrypoints * fix formattting and docker-compose file * add missing env var to satellite dockerfile * Remove build args no longer in use * More changes to make it all work
21 lines
526 B
Docker
21 lines
526 B
Docker
ARG CGO_ENABLED=1
|
|
ARG REPOSITORY=../storj.io/storj
|
|
ARG PACKAGE=storj.io/storj/cmd/satellite
|
|
FROM brimstone/golang as build-env
|
|
|
|
# final stage
|
|
FROM alpine
|
|
ENV API_KEY= \
|
|
CONF_PATH=/root/.storj/satellite/config.yaml \
|
|
OVERLAY_URL=redis://redis:6379/?db=0 \
|
|
IDENTITY_ADDR=:7777 \
|
|
BOOTSTRAP_ADDR=bootstrap.storj.io:8080 \
|
|
MOCK_OVERLAY_NODES=
|
|
EXPOSE 7776/udp \
|
|
7777 \
|
|
8080
|
|
WORKDIR /app
|
|
COPY --from=build-env /app /app/satellite
|
|
COPY cmd/satellite/entrypoint /entrypoint
|
|
ENTRYPOINT ["/entrypoint"]
|