Update dockerfile if statement

This commit is contained in:
MrTyton 2022-09-12 06:26:29 -04:00
parent bb5452cdd5
commit 52a5ba2e4f
2 changed files with 4 additions and 2 deletions

View File

@ -55,9 +55,11 @@ RUN echo "**** s6 omsta;; ****" && \
RUN echo *** Install Packages *** && \ RUN echo *** Install Packages *** && \
set -x && \ set -x && \
if [ -z ${FFF_RELEASE+x} ]; then \ if [ -z ${FFF_RELEASE} ]; then \
echo "FFF Using Default Release"; \
python3 -m pip --no-cache-dir install FanFicFare; \ python3 -m pip --no-cache-dir install FanFicFare; \
else \ 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}; \ python3 -m pip --no-cache-dir install --extra-index-url https://testpypi.python.org/pypi FanFicFare==${FFF_RELEASE}; \
fi && \ fi && \
python3 -m pip --no-cache-dir install pushbullet.py pillow && \ python3 -m pip --no-cache-dir install pushbullet.py pillow && \

View File

@ -1 +1 @@
2022.09.12 2022.09.12-1