forked from wangqifan/calc
23 lines
441 B
Docker
23 lines
441 B
Docker
|
|
FROM python:3.9-slim
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
# 安装系统依赖
|
||
|
|
RUN apt-get update && apt-get install -y \
|
||
|
|
curl \
|
||
|
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
|
||
|
|
# 复制依赖文件
|
||
|
|
COPY requirements.txt .
|
||
|
|
|
||
|
|
# 安装Python依赖
|
||
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
|
||
|
|
# 复制应用代码
|
||
|
|
COPY . .
|
||
|
|
|
||
|
|
# 暴露端口
|
||
|
|
EXPOSE 8000
|
||
|
|
|
||
|
|
# 启动命令
|
||
|
|
CMD ["gunicorn", "main:app", "-w", "4", "-k", "uvicorn.workers.UvicornWorker", "-b", "0.0.0.0:8000"]
|