2022-08-27 14:02:18 +02:00
|
|
|
FROM node:18-alpine
|
2020-05-12 13:55:23 +02:00
|
|
|
|
|
|
|
RUN mkdir /fake-log
|
|
|
|
WORKDIR /fake-log
|
|
|
|
|
2022-08-27 16:39:16 +02:00
|
|
|
RUN apk add --no-cache git
|
2020-05-12 13:55:23 +02:00
|
|
|
|
|
|
|
COPY package.json package-lock.json ./
|
|
|
|
RUN npm install
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
CMD ["npm", "start"]
|