Merge remote-tracking branch 'origin/jsdw-sharding' into helm

This commit is contained in:
arshamparity
2021-07-28 13:22:41 +03:00
67 changed files with 8098 additions and 3411 deletions
+3 -3
View File
@@ -10,15 +10,15 @@ RUN cargo build --${PROFILE} --bins
# MAIN IMAGE FOR PEOPLE TO PULL --- small one#
FROM docker.io/debian:buster-slim
LABEL maintainer="Parity Technologies"
LABEL description="Polkadot Telemetry backend, static build"
LABEL description="Polkadot Telemetry backend shard/core binaries, static build"
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/$PROFILE/telemetry_shard /usr/local/bin
COPY --from=builder /app/target/$PROFILE/telemetry_core /usr/local/bin
RUN apt-get -y update && apt-get -y install openssl && apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/
EXPOSE 8000
ENTRYPOINT ["telemetry"]