fake-log/Dockerfile
2022-08-27 14:00:35 +02:00

13 lines
192 B
Docker

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