ваше сообщение коммита

This commit is contained in:
2025-06-29 02:07:50 +03:00
parent 1f4024d5be
commit e9287be1ff
26 changed files with 974 additions and 168 deletions

6
Dockerfile.agent Normal file
View File

@@ -0,0 +1,6 @@
FROM node:18-alpine
WORKDIR /app
COPY cloudflared-agent.js .
RUN yarn add express
RUN apk add --no-cache docker-cli docker-compose
CMD ["node", "cloudflared-agent.js"]