FROM node:16.3.0-alpine3.13
RUN apk add --no-cache iproute2

WORKDIR /app

COPY package*.json ./
RUN npm ci
COPY . .

CMD [ "./entrypoint.sh"]
