1 2 3 4 5 6 7 8 9
FROM alpine:3.11 RUN apk add --no-cache nodejs npm WORKDIR /webserver COPY . . RUN npm install ENTRYPOINT ["./webserver.js"]