mirror of
https://github.com/xtream1101/humblebundle-downloader.git
synced 2024-11-20 08:49:17 +01:00
Added Dockerfile
This commit is contained in:
parent
e2e5df7529
commit
2570324202
@ -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"]
|
Loading…
Reference in New Issue
Block a user