Skip to content

Commit 5e995bf

Browse files
authored
updated graph-node image to solve the missing libssl (#5711)
1 parent b9543fc commit 5e995bf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docker/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ COPY docker/Dockerfile /Dockerfile
5252
COPY docker/bin/* /usr/local/bin/
5353

5454
# The graph-node runtime image with only the executable
55-
FROM debian:bookworm-20240722-slim as graph-node
55+
FROM debian:bookworm-20241111-slim as graph-node
5656
ENV RUST_LOG ""
5757
ENV GRAPH_LOG ""
5858
ENV EARLY_LOG_CHUNK_SIZE ""
@@ -97,11 +97,13 @@ EXPOSE 8020
9797
EXPOSE 8030
9898

9999
RUN apt-get update \
100-
&& apt-get install -y libpq-dev ca-certificates netcat-openbsd
100+
&& apt-get install -y libpq-dev ca-certificates \
101+
netcat-openbsd
101102

102103
ADD docker/wait_for docker/start /usr/local/bin/
103104
COPY --from=graph-node-build /usr/local/bin/graph-node /usr/local/bin/graphman /usr/local/bin/
104105
COPY --from=graph-node-build /etc/image-info /etc/image-info
105106
COPY --from=envsubst /go/bin/envsubst /usr/local/bin/
106107
COPY docker/Dockerfile /Dockerfile
107108
CMD ["start"]
109+

0 commit comments

Comments
 (0)