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"]