From f996d380e8f1ab572811f4a903de0d6693b24755 Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Fri, 26 Jul 2024 12:23:17 +0000 Subject: [PATCH] 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: https://git.vdb.to/cerc-io/testnet-onboarding-api/pulls/1 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 . .