Skip to content

Commit

Permalink
Fix Docker 7z missing (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
darodi authored Jan 6, 2023
1 parent b608096 commit e483af5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG

#### 5.5.3b19:
* Fix Docker 7z missing [darodi/kcc#31](https://github.com/darodi/kcc/issues/31), thanks [@darodi](https://github.com/darodi)

#### 5.5.3b18:
* Spread splitter not keeping aspect ratio [darodi/kcc#27](https://github.com/darodi/kcc/issues/27), thanks [@darodi](https://github.com/darodi)

Expand Down
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,11 @@ LABEL org.opencontainers.image.title="Kindle Comic Converter"


ENV PATH="/opt/venv/bin:$PATH"
WORKDIR /opt/kcc
WORKDIR /app
COPY . /opt/kcc
RUN ln -s /app/kindlegen /bin/kindlegen && \
RUN DEBIAN_FRONTEND=noninteractive apt-get update -y && apt-get -yq upgrade && \
apt-get install -y p7zip-full unrar-free && \
ln -s /app/kindlegen /bin/kindlegen && \
cat /opt/kcc/kindlecomicconverter/__init__.py | grep version | awk '{print $3}' | sed "s/'//g" > /IMAGE_VERSION

ENTRYPOINT ["/opt/kcc/kcc-c2e.py"]
Expand Down
2 changes: 1 addition & 1 deletion kindlecomicconverter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '5.5.3b18'
__version__ = '5.5.3b19'
__license__ = 'ISC'
__copyright__ = '2012-2022, Ciro Mattia Gonano <[email protected]>, Pawel Jastrzebski <[email protected]>, darodi'
__docformat__ = 'restructuredtext en'

0 comments on commit e483af5

Please sign in to comment.