ButlerBin/Dockerfile

5 lines
80 B
Docker

FROM node:alpine
WORKDIR /app
COPY . /app
RUN npm install
CMD [ "npm", "start" ]