Initial commit: management

This commit is contained in:
jtricerolph 2026-07-01 12:09:54 +00:00
commit ab329d497b
8 changed files with 243 additions and 0 deletions

15
updater/Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM node:20-alpine
RUN apk add --no-cache openssh-client
WORKDIR /app
COPY package.json ./
RUN npm install --omit=dev
COPY src/ ./src/
COPY deploy-map.js ./
EXPOSE 9000
CMD ["node", "src/index.js"]