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

13 lines
192 B
Docker

FROM node:18-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"]