ButlerBin/Dockerfile

6 lines
80 B
Docker

FROM node:alpine3.10
COPY . /srv
WORKDIR /srv
RUN npm install
CMD "npm" "start"