Compare commits

...

9 Commits

Author SHA1 Message Date
Markus Opolka
02e8715589 Upgrading to Version 6.3.5+231113 2023-11-22 08:00:01 +01:00
Markus Opolka
b19d599e78 Upgrading to LTS Version 5.6.45+231114 2023-11-22 07:59:37 +01:00
Markus Opolka
98db5c64e9 Merge pull request #177 from edgarrmondragon/bump-php
Bump PHP to 8.1 in 6.x images
2023-11-15 16:31:01 +01:00
Markus Opolka
cbc70e8d1f Upgrading to Version 6.3.4+231108 2023-11-14 08:05:58 +01:00
Markus Opolka
fbd0af36a9 Upgrading to LTS Version 5.6.44+231107 2023-11-14 07:59:57 +01:00
Edgar Ramírez Mondragón
cf6a81b1f0 Use PHP 8.1 2023-11-10 10:07:03 -06:00
Markus Opolka
7f9fb7c962 Merge pull request #178 from martialblog/extend-apt-mark
Improve removal of dev packages
2023-11-10 14:34:53 +01:00
Markus Opolka
8b727d954f Improve removal of dev packages
- Due to the PHP libs being at /lib in newer Image versions
   the apt-mark manual wouldn't catch them and remove important libraries.
   This extends the marking of required packages.
2023-11-10 14:28:49 +01:00
Markus Opolka
ef3fab259e Upgrading to Version 6.3.3+231106 2023-11-07 07:38:47 +01:00
6 changed files with 29 additions and 15 deletions

View File

@@ -81,8 +81,8 @@ RUN a2enmod headers rewrite remoteip; \
# Use the default production configuration
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
ARG version="5.6.43+231030"
ARG sha256_checksum="4eedef15202ac771e08cb64a4c8e4083026da6ac1642f9a1ba952f8917e321f0"
ARG version="5.6.45+231114"
ARG sha256_checksum="198c3da269b422f0762fb9ff96e0e52e8c528660bb14b0402738dc6b1e76415f"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/refs/tags/${version}.tar.gz"
ARG USER=www-data
ARG LISTEN_PORT=8080

View File

@@ -51,8 +51,8 @@ RUN set -ex; \
apk add --no-cache --no-network --virtual .limesurvey-phpext-rundeps $runDeps; \
apk del --no-cache --no-network .build-deps
ARG version="5.6.43+231030"
ARG sha256_checksum="4eedef15202ac771e08cb64a4c8e4083026da6ac1642f9a1ba952f8917e321f0"
ARG version="5.6.45+231114"
ARG sha256_checksum="198c3da269b422f0762fb9ff96e0e52e8c528660bb14b0402738dc6b1e76415f"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/refs/tags/${version}.tar.gz"
ARG USER=www-data
ENV LIMESURVEY_VERSION=$version

View File

@@ -68,8 +68,8 @@ RUN set -ex; \
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \
rm -rf /var/lib/apt/lists/*
ARG version="5.6.43+231030"
ARG sha256_checksum="4eedef15202ac771e08cb64a4c8e4083026da6ac1642f9a1ba952f8917e321f0"
ARG version="5.6.45+231114"
ARG sha256_checksum="198c3da269b422f0762fb9ff96e0e52e8c528660bb14b0402738dc6b1e76415f"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/refs/tags/${version}.tar.gz"
ARG USER=www-data
ENV LIMESURVEY_VERSION=$version

View File

@@ -1,4 +1,4 @@
FROM docker.io/php:8.0-apache
FROM docker.io/php:8.1-apache
LABEL maintainer="markus@martialblog.de"
# Install OS dependencies
@@ -64,6 +64,13 @@ RUN set -ex; \
| cut -d: -f1 \
| sort -u \
| xargs -rt apt-mark manual; \
ldd "$(php -r 'echo ini_get("extension_dir");')"/*.so \
| awk '$3 ~ /^\/lib/ { print "/usr"$3 }' \
| sort -u \
| xargs -r dpkg-query -S \
| cut -d: -f1 \
| sort -u \
| xargs -rt apt-mark manual; \
\
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \
rm -rf /var/lib/apt/lists/*
@@ -81,8 +88,8 @@ RUN a2enmod headers rewrite remoteip; \
# Use the default production configuration
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
ARG version="6.3.1+231023"
ARG sha256_checksum="7a75e490d28c27b4eef9bcebda08edf927a48009769471da8a1b3dcc4099e9ca"
ARG version="6.3.5+231113"
ARG sha256_checksum="388fd543acaae18748755b2d7a85479260ecbca455c8deb4ec803e1dc6bae534"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/refs/tags/${version}.tar.gz"
ARG USER=www-data
ARG LISTEN_PORT=8080

View File

@@ -1,4 +1,4 @@
FROM docker.io/php:8.0-fpm-alpine
FROM docker.io/php:8.1-fpm-alpine
LABEL maintainer="markus@martialblog.de"
# Install OS dependencies
@@ -51,8 +51,8 @@ RUN set -ex; \
apk add --no-cache --no-network --virtual .limesurvey-phpext-rundeps $runDeps; \
apk del --no-cache --no-network .build-deps
ARG version="6.3.1+231023"
ARG sha256_checksum="7a75e490d28c27b4eef9bcebda08edf927a48009769471da8a1b3dcc4099e9ca"
ARG version="6.3.5+231113"
ARG sha256_checksum="388fd543acaae18748755b2d7a85479260ecbca455c8deb4ec803e1dc6bae534"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/refs/tags/${version}.tar.gz"
ARG USER=www-data
ENV LIMESURVEY_VERSION=$version

View File

@@ -1,4 +1,4 @@
FROM docker.io/php:8.0-fpm
FROM docker.io/php:8.1-fpm
LABEL maintainer="markus@martialblog.de"
# Install OS dependencies
@@ -64,12 +64,19 @@ RUN set -ex; \
| cut -d: -f1 \
| sort -u \
| xargs -rt apt-mark manual; \
ldd "$(php -r 'echo ini_get("extension_dir");')"/*.so \
| awk '$3 ~ /^\/lib/ { print "/usr"$3 }' \
| sort -u \
| xargs -r dpkg-query -S \
| cut -d: -f1 \
| sort -u \
| xargs -rt apt-mark manual; \
\
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \
rm -rf /var/lib/apt/lists/*
ARG version="6.3.1+231023"
ARG sha256_checksum="7a75e490d28c27b4eef9bcebda08edf927a48009769471da8a1b3dcc4099e9ca"
ARG version="6.3.5+231113"
ARG sha256_checksum="388fd543acaae18748755b2d7a85479260ecbca455c8deb4ec803e1dc6bae534"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/refs/tags/${version}.tar.gz"
ARG USER=www-data
ENV LIMESURVEY_VERSION=$version