FROM alpine:3.11

RUN apk add --no-cache nodejs npm

WORKDIR /webserver
COPY . .
RUN npm install

ENTRYPOINT ["./webserver.js"]