mirror of
https://github.com/xtream1101/humblebundle-downloader.git
synced 2025-02-02 03:52:41 +01:00
12 lines
161 B
Docker
12 lines
161 B
Docker
FROM python:3.10-slim
|
|
|
|
RUN pip install poetry
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN poetry config virtualenvs.create false && poetry install --no-dev
|
|
|
|
ENTRYPOINT ["hbd"]
|