2026-07-21 16:04:18 +08:00
|
|
|
FROM modelhubxc-4pd.tencentcloudcr.com/xc_agent_platform/python:3.11-slim
|
|
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
COPY requirements.txt ./
|
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
|
|
|
|
COPY app ./app
|
|
|
|
|
COPY seeds ./seeds
|
|
|
|
|
COPY scripts ./scripts
|
2026-07-21 17:20:40 +08:00
|
|
|
COPY config.local.json ./
|
2026-07-21 16:04:18 +08:00
|
|
|
|
|
|
|
|
EXPOSE 8080
|
|
|
|
|
|
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
|
CMD ["python", "-m", "app.main"]
|