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