added dockerfile

This commit is contained in:
2024-12-15 10:35:09 -05:00
parent b87d377405
commit f2573655b6
3 changed files with 41 additions and 5 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM node:latest
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN mkdir -p /app/secrets && chmod -R 700 /app/secrets
EXPOSE 5164
ENV NODE_ENV=production
CMD ["node", "."]