This commit is contained in:
Jurgis Sakalauskas
2025-04-16 11:21:02 +03:00
commit 5c4aa0091c
38 changed files with 9910 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM node:20
RUN apt-get install python3 -y
WORKDIR /app
COPY package*.json ./
COPY mailparser/package*.json ./mailparser/
RUN npm install
COPY . .
EXPOSE 3000
CMD [ "npm", "start"]