20 lines
414 B
Docker
20 lines
414 B
Docker
|
|
FROM python:3.11-slim
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
# 安装依赖
|
||
|
|
COPY requirements.txt .
|
||
|
|
RUN pip install --no-cache-dir -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com
|
||
|
|
|
||
|
|
# 复制代码
|
||
|
|
COPY . .
|
||
|
|
|
||
|
|
# 删除本地环境配置,使用容器环境变量
|
||
|
|
RUN rm -f .env
|
||
|
|
|
||
|
|
# 暴露端口
|
||
|
|
EXPOSE 3000
|
||
|
|
|
||
|
|
# 启动命令
|
||
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "3000"]
|