Spaces:
Sleeping
Sleeping
File size: 410 Bytes
55b0e20 f6d8d19 55b0e20 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc \
&& pip install --no-cache-dir -r requirements.txt \
&& apt-get purge -y gcc \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/*
COPY main.py .
# 复制 core 模块
COPY core ./core
# 复制 util 目录
COPY util ./util
CMD ["python", "-u", "main.py"] |