Files
xc_validation_strategy/Dockerfile

15 lines
287 B
Docker
Raw Normal View History

2026-06-10 21:42:41 +08:00
FROM modelhubxc-4pd.tencentcloudcr.com/xc_agent_platform/python:3.11-slim
2026-06-22 19:00:46 +08:00
ENV PYTHONUNBUFFERED=1
2026-06-10 21:42:41 +08:00
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -i https://pypi.tuna.tsinghua.edu.cn/simple -r requirements.txt
COPY . .
EXPOSE 8080
CMD ["python", "main.py"]