Added Dockerfile and CI/CD for Imapsync

Added Core Functionality for Imapsync
This commit is contained in:
2023-11-29 19:52:37 +01:00
parent ff966418b2
commit d74d7abc90
574 changed files with 956 additions and 89559 deletions

11
tools/imapsync/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm i
COPY . .
CMD npm run start