forked from Mirrors/humblebundle-downloader
Added Dockerfile
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
# Change log
|
||||
|
||||
|
||||
## 0.4.2
|
||||
|
||||
- Added public docker image
|
||||
|
||||
|
||||
## 0.4.1
|
||||
|
||||
- Fixed crash when missing cli args ([#48](https://github.com/xtream1101/humblebundle-downloader/pull/48))
|
||||
|
||||
11
Dockerfile
Normal file
11
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user