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
406 B
Docker
17 lines
406 B
Docker
ARG CGO_ENABLED=1
|
|
ARG REPOSITORY=../storj.io/storj
|
|
ARG PACKAGE=storj.io/storj/cmd/gateway
|
|
FROM storjlabs/golang as build-env
|
|
|
|
# final stage
|
|
FROM alpine
|
|
ENV CONF_PATH=/root/.local/share/storj/uplink \
|
|
API_KEY= \
|
|
SATELLITE_ADDR=
|
|
EXPOSE 7777
|
|
WORKDIR /app
|
|
VOLUME /root/.local/share/storj/uplink
|
|
COPY --from=build-env /app /app/gateway
|
|
COPY cmd/gateway/entrypoint /entrypoint
|
|
ENTRYPOINT ["/entrypoint"]
|