2019-04-08 21:01:20 +01:00
|
|
|
ARG DOCKER_ARCH
|
|
|
|
FROM ${DOCKER_ARCH:-amd64}/alpine
|
|
|
|
ARG TAG
|
|
|
|
ARG GOARCH
|
|
|
|
ENV GOARCH ${GOARCH}
|
2018-12-21 16:56:57 +00:00
|
|
|
EXPOSE 28967
|
2018-07-19 20:42:50 +01:00
|
|
|
WORKDIR /app
|
2020-12-08 00:38:33 +00:00
|
|
|
RUN apk -U add ca-certificates
|
2019-04-08 21:01:20 +01:00
|
|
|
COPY release/${TAG}/storagenode_linux_${GOARCH:-amd64} /app/storagenode
|
2018-08-25 02:52:58 +01:00
|
|
|
COPY cmd/storagenode/entrypoint /entrypoint
|
2019-04-23 16:51:04 +01:00
|
|
|
COPY cmd/storagenode/dashboard.sh /app/dashboard.sh
|
2018-08-23 16:48:03 +01:00
|
|
|
ENTRYPOINT ["/entrypoint"]
|
2019-04-23 16:51:04 +01:00
|
|
|
|
|
|
|
# Remove after the alpha
|
|
|
|
ENV ADDRESS="" \
|
|
|
|
EMAIL="" \
|
|
|
|
WALLET="" \
|
2020-11-06 18:41:12 +00:00
|
|
|
STORAGE="2.0TB" \
|
|
|
|
SETUP="false"
|