chore(proxy-contur): preserve legacy Contour compatibility service

This commit is contained in:
Codex
2026-07-16 02:24:31 +03:00
parent 7b55d887bc
commit fedaf24098
6 changed files with 1113 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json ./
RUN npm install --omit=dev
COPY server.js ./
EXPOSE 8787
CMD ["node", "server.js"]