Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTyton authored Jan 13, 2024
1 parent c7fce06 commit 913f8c8
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ RUN set -x && \
curl \
dbus \
jq \
python3
python3 \
vi

RUN set -x && \
addgroup --gid "$PGID" abc && \
Expand Down Expand Up @@ -53,16 +54,19 @@ RUN echo "**** s6 omsta;; ****" && \
wget -P /tmp/ https://github.com/just-containers/s6-overlay/releases/download/v2.2.0.3/${s6_package} && \
tar -xzf /tmp/${s6_package} -C /

RUN echo *** Install Packages *** && \
RUN echo "*** Install FFF ***" && \
set -x && \
if [ -z ${FFF_RELEASE} ]; then \
echo "FFF Using Default Release"; \
python3 -m pip --no-cache-dir install FanFicFare; \
else \
echo "FF Using ${FFF_RELEASE} Release"; \
python3 -m pip --no-cache-dir install --extra-index-url https://testpypi.python.org/pypi FanFicFare==${FFF_RELEASE}; \
fi && \
python3 -m pip --no-cache-dir install pushbullet.py pillow && \
fi
RUN echo "*** Install Other Python Packages ***" && \
python3 -m pip --no-cache-dir install pushbullet.py pillow

RUN echo "*** SymLink Calibredb ***" && \
ln -s /opt/calibre/calibredb /bin/calibredb

RUN echo "**** cleanup ****" && \
Expand Down

0 comments on commit 913f8c8

Please sign in to comment.