mirror of
https://github.com/xtream1101/humblebundle-downloader.git
synced 2024-11-20 08:49:17 +01:00
12 lines
164 B
Docker
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"]
|