QQ-GitHub-Bot/Dockerfile

14 lines
364 B
Docker
Raw Normal View History

2020-09-17 14:42:41 +00:00
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.8
2021-03-09 10:39:46 +00:00
RUN ./download_wkhtmltox buster_amd64
2021-03-08 17:34:47 +00:00
RUN dpkg -i wkhtmltox_*.deb
2020-09-17 14:42:41 +00:00
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/
2021-03-08 17:34:47 +00:00
RUN poetry install --no-root --no-dev