FROM alpine:3.11 RUN apk add --no-cache nodejs npm WORKDIR /serverstore COPY . . RUN npm install ENTRYPOINT ["./serverstore.js"]