Compare commits

...

4 Commits

Author SHA1 Message Date
Markus Opolka
07fea8dfcc Upgrading to Version 6.0.2+230417 2023-04-25 10:06:46 +02:00
Markus Opolka
4250f57653 Upgrading to LTS Version 5.6.16+230418 2023-04-25 10:06:20 +02:00
Markus Opolka
919627c293 Upgrading to Version 3.28.56+230404 2023-04-25 09:56:02 +02:00
Markus Opolka
964ed7b38e Fix LTS platform build (#150) 2023-04-21 08:22:03 +02:00
10 changed files with 21 additions and 26 deletions

View File

@@ -29,11 +29,6 @@ jobs:
permissions: permissions:
packages: write packages: write
contents: read contents: read
strategy:
matrix:
platform:
- linux/amd64
- linux/arm64
steps: steps:
- name: 'Check out the repo' - name: 'Check out the repo'
uses: actions/checkout@v3 uses: actions/checkout@v3
@@ -70,7 +65,7 @@ jobs:
push: true push: true
tags: ${{ steps.metadata-apache.outputs.tags }} tags: ${{ steps.metadata-apache.outputs.tags }}
labels: ${{ steps.metadata-apache.outputs.labels }} labels: ${{ steps.metadata-apache.outputs.labels }}
platforms: ${{ matrix.platform }} platforms: linux/amd64,linux/arm64
- name: 'FPM variant metadata' - name: 'FPM variant metadata'
id: metadata-fpm id: metadata-fpm
@@ -91,7 +86,7 @@ jobs:
push: true push: true
tags: ${{ steps.metadata-fpm.outputs.tags }} tags: ${{ steps.metadata-fpm.outputs.tags }}
labels: ${{ steps.metadata-apache.outputs.labels }} labels: ${{ steps.metadata-apache.outputs.labels }}
platforms: ${{ matrix.platform }} platforms: linux/amd64,linux/arm64
- name: 'FPM Alpine variant metadata' - name: 'FPM Alpine variant metadata'
id: metadata-fpm-alpine id: metadata-fpm-alpine
@@ -112,4 +107,4 @@ jobs:
push: true push: true
tags: ${{ steps.metadata-fpm-alpine.outputs.tags }} tags: ${{ steps.metadata-fpm-alpine.outputs.tags }}
labels: ${{ steps.metadata-apache.outputs.labels }} labels: ${{ steps.metadata-apache.outputs.labels }}
platforms: ${{ matrix.platform }} platforms: linux/amd64,linux/arm64

View File

@@ -59,8 +59,8 @@ RUN a2enmod headers rewrite remoteip; \
# Use the default production configuration # Use the default production configuration
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
ARG version="3.28.55+230328" ARG version="3.28.56+230404"
ARG sha256_checksum="7f820259aa68fcd2fff7a23e9261ad65af0b28085ef93a69bf14cc068ee829c5" ARG sha256_checksum="abfdc800d97feabbd448df4a2cfa72a954d2f6b013475132b0691ac2563e7228"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=root ARG USER=root
ARG LISTEN_PORT=80 ARG LISTEN_PORT=80

View File

@@ -33,8 +33,8 @@ RUN set -ex; \
tidy \ tidy \
zip zip
ARG version="3.28.55+230328" ARG version="3.28.56+230404"
ARG sha256_checksum="7f820259aa68fcd2fff7a23e9261ad65af0b28085ef93a69bf14cc068ee829c5" ARG sha256_checksum="abfdc800d97feabbd448df4a2cfa72a954d2f6b013475132b0691ac2563e7228"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ENV LIMESURVEY_VERSION=$version ENV LIMESURVEY_VERSION=$version

View File

@@ -46,8 +46,8 @@ RUN set -ex; \
tidy \ tidy \
zip zip
ARG version="3.28.55+230328" ARG version="3.28.56+230404"
ARG sha256_checksum="7f820259aa68fcd2fff7a23e9261ad65af0b28085ef93a69bf14cc068ee829c5" ARG sha256_checksum="abfdc800d97feabbd448df4a2cfa72a954d2f6b013475132b0691ac2563e7228"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ENV LIMESURVEY_VERSION=$version ENV LIMESURVEY_VERSION=$version

View File

@@ -60,8 +60,8 @@ RUN a2enmod headers rewrite remoteip; \
# Use the default production configuration # Use the default production configuration
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
ARG version="5.6.15+230412" ARG version="5.6.16+230418"
ARG sha256_checksum="c5dc34ba3785ce0d939d98729093bbb5ab08a2f66515b5ca2b3d3c49e201da54" ARG sha256_checksum="5479445b16beb0321ae91ddd72716bd5f52e45a91cc7dec415d16f28552947c9"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=www-data ARG USER=www-data
ARG LISTEN_PORT=8080 ARG LISTEN_PORT=8080

View File

@@ -34,8 +34,8 @@ RUN set -ex; \
tidy \ tidy \
zip zip
ARG version="5.6.15+230412" ARG version="5.6.16+230418"
ARG sha256_checksum="c5dc34ba3785ce0d939d98729093bbb5ab08a2f66515b5ca2b3d3c49e201da54" ARG sha256_checksum="5479445b16beb0321ae91ddd72716bd5f52e45a91cc7dec415d16f28552947c9"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=www-data ARG USER=www-data
ENV LIMESURVEY_VERSION=$version ENV LIMESURVEY_VERSION=$version

View File

@@ -46,8 +46,8 @@ RUN set -ex; \
tidy \ tidy \
zip zip
ARG version="5.6.15+230412" ARG version="5.6.16+230418"
ARG sha256_checksum="c5dc34ba3785ce0d939d98729093bbb5ab08a2f66515b5ca2b3d3c49e201da54" ARG sha256_checksum="5479445b16beb0321ae91ddd72716bd5f52e45a91cc7dec415d16f28552947c9"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=www-data ARG USER=www-data
ENV LIMESURVEY_VERSION=$version ENV LIMESURVEY_VERSION=$version

View File

@@ -60,8 +60,8 @@ RUN a2enmod headers rewrite remoteip; \
# Use the default production configuration # Use the default production configuration
RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini" RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
ARG version="6.0.1+230411" ARG version="6.0.2+230417"
ARG sha256_checksum="ab06006760677ff2fdee315392ee6d5b869f0144f7adaf2bc94879162a378589" ARG sha256_checksum="34b8814c026e3510af7f4d12ba6a7a7e7bffb5f5d4b074de97051b0501a90b09"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=www-data ARG USER=www-data
ARG LISTEN_PORT=8080 ARG LISTEN_PORT=8080

View File

@@ -34,8 +34,8 @@ RUN set -ex; \
tidy \ tidy \
zip zip
ARG version="6.0.1+230411" ARG version="6.0.2+230417"
ARG sha256_checksum="ab06006760677ff2fdee315392ee6d5b869f0144f7adaf2bc94879162a378589" ARG sha256_checksum="34b8814c026e3510af7f4d12ba6a7a7e7bffb5f5d4b074de97051b0501a90b09"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=www-data ARG USER=www-data
ENV LIMESURVEY_VERSION=$version ENV LIMESURVEY_VERSION=$version

View File

@@ -46,8 +46,8 @@ RUN set -ex; \
tidy \ tidy \
zip zip
ARG version="6.0.1+230411" ARG version="6.0.2+230417"
ARG sha256_checksum="ab06006760677ff2fdee315392ee6d5b869f0144f7adaf2bc94879162a378589" ARG sha256_checksum="34b8814c026e3510af7f4d12ba6a7a7e7bffb5f5d4b074de97051b0501a90b09"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=www-data ARG USER=www-data
ENV LIMESURVEY_VERSION=$version ENV LIMESURVEY_VERSION=$version