e486585853
We've had a lot of issues with alpine and currently there's a broken network issue on alpine for users running on RPI arm32 architechture which requires a workaround before docker is able to sync time between the host and the container: https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.13.0\#time64_requirements. Since we're switching the base image of the storagenode to debian, it's best to switch the base image of all our docker images to debian as well for consistency; less drift across them and keeps the push target consistent. Change-Id: If3adf7a57dc59f19ef2221b892f340d919798fc5
36 lines
1.2 KiB
Docker
36 lines
1.2 KiB
Docker
ARG DOCKER_ARCH
|
|
# Satellite UI static asset generation
|
|
FROM node:16.11.1 as ui
|
|
WORKDIR /app
|
|
COPY web/satellite/ /app
|
|
# Need to clean up (or ignore) local folders like node_modules, etc...
|
|
RUN npm install
|
|
RUN npm run build
|
|
|
|
# Fetch ca-certificates file for arch independent builds below
|
|
FROM debian:buster-slim as ca-cert
|
|
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates
|
|
RUN update-ca-certificates
|
|
|
|
FROM ${DOCKER_ARCH:-amd64}/debian:buster-slim
|
|
ARG TAG
|
|
ARG GOARCH
|
|
ENV GOARCH ${GOARCH}
|
|
ENV CONF_PATH=/root/.local/share/storj/satellite \
|
|
STORJ_CONSOLE_STATIC_DIR=/app \
|
|
STORJ_CONSOLE_ADDRESS=0.0.0.0:10100
|
|
EXPOSE 7777
|
|
EXPOSE 10100
|
|
WORKDIR /app
|
|
COPY --from=ui /app/static /app/static
|
|
COPY --from=ui /app/dist /app/dist
|
|
COPY --from=ca-cert /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
COPY release/${TAG}/wasm/access.wasm /app/static/wasm/
|
|
COPY release/${TAG}/wasm/wasm_exec.js /app/static/wasm/
|
|
COPY release/${TAG}/wasm/access.wasm.br /app/static/wasm/
|
|
COPY release/${TAG}/wasm/wasm_exec.js.br /app/static/wasm/
|
|
COPY release/${TAG}/satellite_linux_${GOARCH:-amd64} /app/satellite
|
|
COPY release/${TAG}/inspector_linux_${GOARCH:-amd64} /app/inspector
|
|
COPY cmd/satellite/entrypoint /entrypoint
|
|
ENTRYPOINT ["/entrypoint"]
|