FROM node:lts-slim
RUN apt-get update && apt-get install -y netcat-openbsd
RUN mkdir /app
WORKDIR /app
COPY . /app
RUN npm install --save-dev
