remote-jobs/Dockerfile

14 lines
99 B
Docker

FROM node:alpine
RUN mkdir node
COPY . ./node
WORKDIR /node/
RUN npm install
CMD npm start