Add netcat installation in Dockerfile (#1)

Part of [Sumsub KYC integration in onboarding app](https://www.notion.so/Sumsub-KYC-integration-in-onboarding-app-607b598c9c1d4d12adc71725e2ab5e7e)

Reviewed-on: #1
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
This commit is contained in:
Prathamesh Musale 2024-07-26 12:23:17 +00:00 committed by nabarun
parent e7abf8d5eb
commit f996d380e8

View File

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