feat: add token sync service and update docker-compose

This commit is contained in:
2026-05-04 22:58:08 +08:00
parent 32f6929747
commit ca462e290a
3 changed files with 64 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM python:3.11-slim
# 安装 curl 用于与 Docker Socket 通信
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir flask
WORKDIR /app
COPY app.py .
EXPOSE 42000
CMD ["python", "app.py"]