From fd27cd141ce4f909dd39a66053c2339d85cb065c Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Fri, 26 Jul 2024 12:23:30 +0000 Subject: [PATCH] Add netcat installation in Dockerfile (#2) Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675) Reviewed-on: https://git.vdb.to/cerc-io/laconic-faucet/pulls/2 Co-authored-by: Prathamesh Musale Co-committed-by: Prathamesh Musale --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 24a3590..5d82fb0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,8 @@ FROM node:20-bullseye WORKDIR /app +RUN apt-get update && apt-get install -y netcat + # Copy the application code COPY . .