fake-log/Dockerfile
2020-05-12 13:55:23 +02:00

13 lines
192 B
Docker

FROM node:14-alpine
RUN mkdir /fake-log
WORKDIR /fake-log
RUN apk add --no-cache git python2 make g++
COPY package.json package-lock.json ./
RUN npm install
COPY . .
CMD ["npm", "start"]