Skip to content

Commit

Permalink
remove copying of netcat
Browse files Browse the repository at this point in the history
  • Loading branch information
clangenb committed Feb 1, 2023
1 parent b2e5841 commit c1542c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parachain/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y && \
rustup default stable

# install netcat for healthcheck
RUN apt-get update && apt-get install -yq netcat && cp /usr/bin/nc /usr/local/bin/
RUN apt-get update && apt-get install -yq netcat

RUN echo "PATH=\"$PATH:/root/.cargo/bin\"" >> /etc/environment
2 changes: 1 addition & 1 deletion worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ RUN apt-get update && \
rm -rf /var/cache/apt/archives/*

# install netcat for healthcheck
RUN apt-get update && apt-get install -yq netcat && cp /usr/bin/nc /usr/local/bin/
RUN apt-get update && apt-get install -yq netcat

# set environment variables
ENV DEBIAN_FRONTEND noninteractive
Expand Down

0 comments on commit c1542c2

Please sign in to comment.