summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 2b38630e28a49c0b9e9424335769f22a268fb476 (plain)
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"]