This repository has been archived on 2025-09-01. You can view files and clone it, but cannot push or open issues or pull requests.
Files
humblebundle-downloader/Dockerfile
2024-08-04 16:49:41 -04:00

12 lines
164 B
Docker

FROM python:3.10-slim
RUN pip install poetry
WORKDIR /app
COPY . .
RUN poetry config virtualenvs.create false && poetry install --only main
ENTRYPOINT ["hbd"]