From e62bc102644978063254d07c8f9b79cba28f5aac Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Fri, 26 Jul 2024 17:50:34 +0530 Subject: [PATCH] Add netcat installation in Dockerfile --- 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 . .