diff --git a/backend/Dockerfile b/backend/Dockerfile index 8178129..00f9f07 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,5 +1,5 @@ #### BUILDER IMAGE -- quite big one #### -FROM paritytech/ci-linux:production as builder +FROM paritytech/musl-ci-linux as builder LABEL maintainer="Parity Technologies" LABEL description="Polkadot Telemetry backend builder image" @@ -20,7 +20,7 @@ ARG PROFILE=release WORKDIR /usr/local/bin COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ -COPY --from=builder /app/target/$PROFILE/telemetry /usr/local/bin +COPY --from=builder /app/target/x86_64-unknown-linux-musl/$PROFILE/telemetry /usr/local/bin EXPOSE 8000