t2c / Dockerfile
99i's picture
Update Dockerfile
4445920 verified
raw
history blame contribute delete
437 Bytes
# 使用官方的Python 3.9镜像作为基础镜像
FROM python:3.9
# 设置工作目录
WORKDIR /app
# 将当前目录下的所有文件复制到工作目录中
COPY . .
# 创建文件夹并赋予完全的读写权限
RUN mkdir -p /app/tmp && chmod -R 777 /app/tmp
# 安装依赖
RUN pip install -r requirements.txt
# 暴露端口
EXPOSE 8000
# 运行FastAPI应用
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]