Skip to content

Commit d088798

Browse files
authored
install libc-bin in dockerfile (#603)
1 parent 1aa4c23 commit d088798

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

apps/indexer-proxy/proxy/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,11 @@ RUN --mount=type=cache,id=cargo_bin,target=~/.cargo/bin/ \
2020
# Final image
2121
FROM debian:bullseye-slim
2222

23-
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates && \
23+
RUN rm /var/lib/dpkg/info/libc-bin.* && \
24+
apt-get clean && \
25+
apt-get update && \
26+
apt-get install libc-bin && \
27+
apt-get install -y --no-install-recommends ca-certificates && \
2428
apt-get --assume-yes install curl && \
2529
update-ca-certificates
2630

0 commit comments

Comments
 (0)