CoolFace
Apppublic

Calmlo/SambaNova2API

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile16 linesDownload Raw Back to root
1FROM python:3.11-slim2 3WORKDIR /app4 5# 安装依赖6COPY requirement.txt .7RUN pip install --no-cache-dir -r requirement.txt8 9# 复制应用代码10COPY app.py .11 12# 暴露端口13EXPOSE 786014 15# 启动应用16CMD ["python", "app.py"]