mirror of
https://github.com/Xtao-Labs/QQ-GitHub-Bot.git
synced 2025-01-31 07:31:26 +00:00
9 lines
295 B
Docker
9 lines
295 B
Docker
|
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.8
|
||
|
|
||
|
RUN python3 -m pip config set global.index-url https://mirrors.aliyun.com/pypi/simple
|
||
|
|
||
|
RUN python3 -m pip install poetry && poetry config virtualenvs.create false
|
||
|
|
||
|
COPY ./pyproject.toml ./poetry.lock* /app/
|
||
|
|
||
|
RUN poetry install --no-root --no-dev
|