Skip to content

Commit b9543fc

Browse files
authored
Install correct netcat package in Docker builds (#5709)
In #5620, we updated our base Debian image tag, resulting in our installation of the `netcat` package failing due to being made a virtual package (provided by either `netcat-openbsd` and `netcat-traditional`). Here, we opt to specifically use `netcat-openbsd` to match Bullseye's default.
1 parent c1cee73 commit b9543fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ EXPOSE 8020
9797
EXPOSE 8030
9898

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

102102
ADD docker/wait_for docker/start /usr/local/bin/
103103
COPY --from=graph-node-build /usr/local/bin/graph-node /usr/local/bin/graphman /usr/local/bin/

0 commit comments

Comments
 (0)