5224e92646
* If the directory is somehow persistent, but the config file itself isn't created yet, create it * Other improvements to thd storagenode Docker image * Other improvements to thd satellite Docker image * Other improvements to thd gateway Docker image * Other improvements to thd uplink Docker image
17 lines
441 B
Docker
17 lines
441 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 \
|
|
BOOTSTRAP_ADDR=bootstrap.storj.io:8080
|
|
EXPOSE 7777
|
|
WORKDIR /app
|
|
VOLUME /root/.local/share/storj/satellite
|
|
COPY --from=build-env /app /app/satellite
|
|
COPY cmd/satellite/entrypoint /entrypoint
|
|
ENTRYPOINT ["/entrypoint"]
|