2020-12-20 07:26:23 +00:00
|
|
|
ARG DOCKER_ARCH
|
|
|
|
|
2021-05-13 11:36:21 +01:00
|
|
|
# Fetch ca-certificates file for arch independent builds below
|
|
|
|
FROM alpine as ca-cert
|
2020-12-08 20:49:41 +00:00
|
|
|
RUN apk -U add ca-certificates
|
|
|
|
|
2019-04-08 21:01:20 +01:00
|
|
|
FROM ${DOCKER_ARCH:-amd64}/alpine
|
|
|
|
ARG TAG
|
|
|
|
ARG GOARCH
|
2021-05-13 11:36:21 +01:00
|
|
|
ENV GOARCH ${GOARCH}
|
2018-12-21 16:56:57 +00:00
|
|
|
EXPOSE 28967
|
2021-05-13 11:36:21 +01:00
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=ca-cert /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
|
|
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
|
|
|
|
2021-05-13 11:36:21 +01:00
|
|
|
# Remove after the alpha
|
2019-04-23 16:51:04 +01:00
|
|
|
ENV ADDRESS="" \
|
|
|
|
EMAIL="" \
|
|
|
|
WALLET="" \
|
2020-11-06 18:41:12 +00:00
|
|
|
STORAGE="2.0TB" \
|
2021-05-13 11:36:21 +01:00
|
|
|
SETUP="false"
|