@@ -64,21 +64,16 @@ RUN set -ex; \
6464# Calculate download URL
6565ENV VERSION %%VERSION%%
6666ENV URL https://files.phpmyadmin.net/phpMyAdmin/${VERSION}/phpMyAdmin-${VERSION}-all-languages.tar.xz
67- ARG BUILD_DATE
68- ARG VCS_REF
6967
70- LABEL maintainer="The phpMyAdmin Team <developers@phpmyadmin.net>" \
71- org.opencontainers.image.title="Official phpMyAdmin Docker image" \
68+ LABEL org.opencontainers.image.title="Official phpMyAdmin Docker image" \
7269 org.opencontainers.image.description="Run phpMyAdmin with Alpine, Apache and PHP FPM." \
7370 org.opencontainers.image.authors="The phpMyAdmin Team <developers@phpmyadmin.net>" \
7471 org.opencontainers.image.vendor="phpMyAdmin" \
7572 org.opencontainers.image.documentation="https://github.com/phpmyadmin/docker#readme" \
7673 org.opencontainers.image.licenses="GPL-2.0-only" \
7774 org.opencontainers.image.version="${VERSION}" \
7875 org.opencontainers.image.url="https://github.com/phpmyadmin/docker#readme" \
79- org.opencontainers.image.source="https://github.com/phpmyadmin/docker.git" \
80- org.opencontainers.image.revision="${VCS_REF}" \
81- org.opencontainers.image.created="${BUILD_DATE}"
76+ org.opencontainers.image.source="https://github.com/phpmyadmin/docker.git"
8277
8378# Download tarball, verify it using gpg and extract
8479RUN set -ex; \
@@ -108,7 +103,6 @@ RUN set -ex; \
108103 rm -r "$GNUPGHOME" phpMyAdmin.tar.xz phpMyAdmin.tar.xz.asc; \
109104 rm -rf /var/www/html/setup/ /var/www/html/examples/ /var/www/html/test/ /var/www/html/po/ /var/www/html/composer.json /var/www/html/RELEASE-DATE-$VERSION; \
110105 sed -i "s@define('CONFIG_DIR'.*@define('CONFIG_DIR', '/etc/phpmyadmin/');@" /var/www/html/libraries/vendor_config.php; \
111- # Add directory for sessions to allow session persistence
112106 \
113107 apt-mark auto '.*' > /dev/null; \
114108 apt-mark manual $savedAptMark; \
0 commit comments