From 310c2785ada3673379d4dd2cc4cb01ee1a542930 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 10 Oct 2021 15:26:07 +0200 Subject: [PATCH] move container library setup to base image (#40) Co-authored-by: Robert Kaussow Co-committed-by: Robert Kaussow --- Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index f430e5d..cbf7694 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,12 +8,9 @@ LABEL org.opencontainers.image.source="https://gitea.rknet.org/docker/freshrss" LABEL org.opencontainers.image.documentation="https://gitea.rknet.org/docker/freshrss" ARG BUILD_VERSION -ARG CONTAINER_LIBRARY # renovate: datasource=github-releases depName=FreshRSS/FreshRSS ENV FRESHRSS_VERSION="${BUILD_VERSION:-1.18.1}" -# renovate: datasource=git-tags depName=https://gitea.rknet.org/docker/container-library -ENV CONTAINER_LIBRARY="${CONTAINER_LIBRARY:-v0.1.3}" ADD overlay/ / @@ -22,8 +19,6 @@ RUN apk --update add --virtual .build-deps tar curl && \ php7-zip php7-ctype php7-dom php7-fileinfo php7-iconv php7-json php7-session \ php7-simplexml php7-xmlreader php7-zlib php7-pdo_sqlite php7-pdo_mysql\ php7-pdo_pgsql && \ - curl -SsL "https://gitea.rknet.org/docker/container-library/releases/download/${CONTAINER_LIBRARY}/container-library.tar.gz" | \ - tar xz -C / && \ rm -rf /var/www/localhost && \ rm -f /etc/php7/php-fpm.d/www.conf && \ mkdir -p /var/www/app && \