dockerfile and escalation change

This commit is contained in:
indifferentketchup
2026-04-07 09:58:10 -05:00
parent 56ba8e363a
commit 7da082275f
3 changed files with 17 additions and 5 deletions

12
settings-site/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --omit=dev
COPY . .
EXPOSE 12752
CMD ["node", "server.js"]