Dockerize gather

This commit is contained in:
2024-02-04 19:09:33 +03:00
parent db9180721a
commit 9a50b2c6cf
11 changed files with 2626 additions and 3049 deletions

9
gather/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:20-alpine
LABEL authors="anatolykopyl"
WORKDIR /usr/node/app
COPY package*.json ./
RUN npm ci
COPY . .