We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14c8e20 commit f42a151Copy full SHA for f42a151
Dockerfile
@@ -14,7 +14,8 @@ RUN if [ "$TARGETARCH" = "arm64" ]; then \
14
cp /lib/x86_64-linux-gnu/libgcc_s.so.1 /build/target/release/; \
15
fi
16
17
-FROM gcr.io/distroless/base-debian12
+FROM debian:12
18
COPY --from=builder /build/target/release/libgcc_s.so.1 /lib/
19
COPY --from=builder /build/target/release/drift-gateway /bin/drift-gateway
20
+RUN apt-get update && apt-get install -y curl && rm -rf /var/cache/apt/archives /var/lib/apt/lists/*
21
ENTRYPOINT ["/bin/drift-gateway"]
0 commit comments