diff --git a/guetzli/Dockerfile b/guetzli/Dockerfile index a4bd0db..40cecf4 100644 --- a/guetzli/Dockerfile +++ b/guetzli/Dockerfile @@ -1,37 +1,37 @@ # guetzli # -# docker run \ -# --rm \ -# -i \ -# -t \ -# -v ${PWD}:/tmp \ -# guetzli:latest \ -# --verbose /tmp/example.jpg /tmp/example.compressed.jpg +# docker run --rm -it \ +# -v ${PWD}:/tmp \ +# r.j3ss.co/guetzli:latest \ +# --verbose /tmp/example.jpg /tmp/example.compressed.jpg FROM alpine:latest LABEL maintainer "Christian Koep " -ENV GUETZLI_VERSION v1.0.1 -ENV APPDIR /usr/src/guetzli - -RUN buildDeps=' \ - g++ \ - git \ - libpng-dev \ - make \ - ' \ - set -x \ - && apk --no-cache add $buildDeps \ - && git clone --depth 1 --branch ${GUETZLI_VERSION} https://github.com/google/guetzli.git ${APPDIR} \ - && cd ${APPDIR} \ - && make \ - && apk del $buildDeps \ - && mv ${APPDIR}/bin/Release/guetzli /usr/local/bin/guetzli && rm -rf ${APPDIR} \ - && echo "Build complete." - RUN apk --no-cache add \ libpng \ libstdc++ \ libgcc +ENV GUETZLI_VERSION v1.0.1 +ENV APPDIR /usr/src/guetzli + +RUN buildDeps=' \ + g++ \ + git \ + libpng-dev \ + make \ + ' \ + set -x \ + && apk --no-cache add $buildDeps \ + && git clone --depth 1 --branch "${GUETZLI_VERSION}" "https://github.com/google/guetzli.git" "${APPDIR}" \ + && ( \ + cd "${APPDIR}" \ + && make \ + && mv "${APPDIR}/bin/Release/guetzli" /usr/local/bin/guetzli \ + ) \ + && apk del $buildDeps \ + && rm -rf "${APPDIR}" \ + && echo "Build complete." + ENTRYPOINT [ "/usr/local/bin/guetzli" ] diff --git a/latest-versions.sh b/latest-versions.sh index 59130ba..573533c 100755 --- a/latest-versions.sh +++ b/latest-versions.sh @@ -59,6 +59,7 @@ CouchPotato/CouchPotatoServer pooler/cpuminer curl/curl opendnssec/SoftHSMv2 +google/guetzli irssi/irssi zyedidia/micro bitly/oauth2_proxy