Initial commit: management
This commit is contained in:
commit
ab329d497b
8 changed files with 243 additions and 0 deletions
15
updater/Dockerfile
Normal file
15
updater/Dockerfile
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue