加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 429 Bytes
一键复制 编辑 原始数据 按行查看 历史
c2io 提交于 2022-02-03 17:29 . feat: init->fastapi+sqlmodel+pydantic+docker
FROM python:bullseye as builder
COPY poetry.lock pyproject.toml ./
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple poetry \
&& python -m venv /venv \
&& . /venv/bin/activate \
&& poetry install --no-dev
FROM python:slim as runner
COPY --from=builder /venv /venv
WORKDIR /biz
COPY app/ ./app
COPY data/ ./data
COPY bin/ ./bin
ENV HOST="0.0.0.0" \
PORT=8000
ENTRYPOINT [ "./bin/entrypoint.sh" ]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化