Added Dockerfile

This commit is contained in:
Eddy Hintze 2024-08-04 15:52:56 -04:00
parent e2e5df7529
commit 2570324202
2 changed files with 16 additions and 0 deletions

View File

@ -1,6 +1,11 @@
# Change log # Change log
## 0.4.2
- Added public docker image
## 0.4.1 ## 0.4.1
- Fixed crash when missing cli args ([#48](https://github.com/xtream1101/humblebundle-downloader/pull/48)) - Fixed crash when missing cli args ([#48](https://github.com/xtream1101/humblebundle-downloader/pull/48))

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM python:3.10-slim
RUN pip install poetry
WORKDIR /app
COPY . .
RUN poetry config virtualenvs.create false && poetry install --no-dev
ENTRYPOINT ["hbd"]