humblebundle-downloader/Dockerfile

12 lines
164 B
Docker
Raw Normal View History

2024-08-04 21:52:56 +02:00
FROM python:3.10-slim
RUN pip install poetry
WORKDIR /app
COPY . .
2024-08-04 22:49:41 +02:00
RUN poetry config virtualenvs.create false && poetry install --only main
2024-08-04 21:52:56 +02:00
ENTRYPOINT ["hbd"]