- 在data-service中添加aktools依赖和运行配置 - 更新Traefik配置添加压缩中间件 - 修改Consul配置启用ACL - 更新README添加架构图和开发指南 - 添加架构图文档
8 lines
213 B
Docker
8 lines
213 B
Docker
## services/data-service/Dockerfile
|
|
FROM python:3.10-slim
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
COPY . .
|
|
CMD ["sh", "-c", "aktools run --port 8001 & python register.py && wait"]
|