Add netcat installation in Dockerfile

This commit is contained in:
Prathamesh Musale 2024-07-26 17:50:34 +05:30
parent 5f71d4cc2c
commit e62bc10264

View File

@ -2,6 +2,8 @@ FROM node:20-bullseye
WORKDIR /app
RUN apt-get update && apt-get install -y netcat
# Copy the application code
COPY . .