7 lines
185 B
Plaintext
7 lines
185 B
Plaintext
FROM python:3.10-slim
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt # 禁用缓存减小体积
|
|
COPY . .
|
|
EXPOSE 8000
|
|
CMD ["python3","./run.py"] |