FROM node:16.4.2

WORKDIR /tmp

COPY package.json /tmp/

RUN npm install --also=dev

COPY bin /tmp/bin
COPY lib /tmp/lib

EXPOSE 8080

CMD ["npm","run","start-webpack"]