Compare commits

...

14 Commits

Author SHA1 Message Date
Markus Opolka
3ae6ad9a4d Upgrading to LTS Version 3.28.20+220719 2022-07-25 13:08:33 +02:00
Markus Opolka
84bef42be8 Upgrading to Version 5.3.25+220718 2022-07-18 13:11:41 +02:00
Markus Opolka
d586d00f65 Upgrading to LTS Version 3.28.19+220712 2022-07-18 13:11:07 +02:00
Markus Opolka
1f1dc5988c Upgrading to Version 5.3.23+220705 2022-07-13 17:22:50 +02:00
Markus Opolka
d1589be66e Upgrading to LTS Version 3.28.18+220706 2022-07-13 17:21:25 +02:00
Markus Opolka
d70f6e96a2 Upgrading to Version 5.3.22+220628 2022-07-06 14:55:39 +02:00
Markus Opolka
ab4999ce35 Upgrading to LTS Version 3.28.17+220627 2022-07-06 14:54:57 +02:00
Markus Opolka
316121af13 Upgrading to Version 5.3.21+220620 2022-06-29 11:15:07 +02:00
Markus Opolka
34416fb250 Upgrading to LTS Version 3.28.16+220621 2022-06-29 11:14:26 +02:00
Markus Opolka
e640684875 Upgrading to Version 5.3.20+220615 2022-06-20 12:37:40 +02:00
Markus Opolka
e8595fbbed Upgrading to LTS Version 3.28.15+220616 2022-06-20 12:36:02 +02:00
Markus Opolka
a107e3a14f Upgrading to Version 5.3.19+220607 2022-06-17 09:06:09 +02:00
Markus Opolka
69a0febd53 Upgrading to LTS Version 3.28.14+220608 2022-06-17 09:05:00 +02:00
Edgar R. M
2a8c53273e feat: Move ARG instructions right before where they are used (#124) 2022-06-17 09:03:45 +02:00
6 changed files with 32 additions and 28 deletions

View File

@@ -1,10 +1,5 @@
FROM php:8.0-apache
LABEL maintainer="markus@martialblog.de"
ARG version="3.28.13+220531"
ARG sha256_checksum="57273ebd94c54e1501496451137f2d1cf205551c7dd0eebcb42b6aebeec6e1a7"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=root
ARG LISTEN_PORT=80
# Install OS dependencies
RUN set -ex; \
@@ -51,8 +46,6 @@ RUN set -ex; \
tidy \
zip
ENV LIMESURVEY_VERSION=$version
# Apache configuration
RUN a2enmod headers rewrite remoteip; \
{\
@@ -66,6 +59,13 @@ 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="3.28.20+220719"
ARG sha256_checksum="44a55d6e7934cf0769823c2d6af7a668388e9fc5c722551595552175afeed197"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=root
ARG LISTEN_PORT=80
ENV LIMESURVEY_VERSION=$version
# Download, unzip and chmod LimeSurvey from GitHub (defaults to the official LimeSurvey/LimeSurvey repository)
RUN set -ex; \
curl -sSL "${archive_url}" --output /tmp/limesurvey.tar.gz && \

View File

@@ -1,8 +1,5 @@
FROM php:8.0-fpm-alpine
LABEL maintainer="markus@martialblog.de"
ARG version="3.28.13+220531"
ARG sha256_checksum="57273ebd94c54e1501496451137f2d1cf205551c7dd0eebcb42b6aebeec6e1a7"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
# Install OS dependencies
RUN set -ex; \
@@ -36,6 +33,11 @@ RUN set -ex; \
tidy \
zip
ARG version="3.28.20+220719"
ARG sha256_checksum="44a55d6e7934cf0769823c2d6af7a668388e9fc5c722551595552175afeed197"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ENV LIMESURVEY_VERSION=$version
# Download, unzip and chmod LimeSurvey from GitHub (defaults to the official LimeSurvey/LimeSurvey repository)
RUN set -ex; \
curl -sSL "${archive_url}" --output /tmp/limesurvey.tar.gz && \

View File

@@ -1,8 +1,5 @@
FROM php:8.0-fpm
LABEL maintainer="markus@martialblog.de"
ARG version="3.28.13+220531"
ARG sha256_checksum="57273ebd94c54e1501496451137f2d1cf205551c7dd0eebcb42b6aebeec6e1a7"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
# Install OS dependencies
RUN set -ex; \
@@ -49,6 +46,9 @@ RUN set -ex; \
tidy \
zip
ARG version="3.28.20+220719"
ARG sha256_checksum="44a55d6e7934cf0769823c2d6af7a668388e9fc5c722551595552175afeed197"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ENV LIMESURVEY_VERSION=$version
# Download, unzip and chmod LimeSurvey from GitHub (defaults to the official LimeSurvey/LimeSurvey repository)

View File

@@ -1,10 +1,5 @@
FROM php:8.0-apache
LABEL maintainer="markus@martialblog.de"
ARG version="5.3.18+220530"
ARG sha256_checksum="3b866045dcefd78dab39bcef186a8e4ca6408c08e4c43b636415e75610fa9434"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=www-data
ARG LISTEN_PORT=8080
# Install OS dependencies
RUN set -ex; \
@@ -52,8 +47,6 @@ RUN set -ex; \
tidy \
zip
ENV LIMESURVEY_VERSION=$version
# Apache configuration
RUN a2enmod headers rewrite remoteip; \
{\
@@ -67,6 +60,13 @@ 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.3.25+220718"
ARG sha256_checksum="de2dcaf013a2e8c4c10d1890f5446d9933f63d0fbbd026ddc7a15ac48f259a4b"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=www-data
ARG LISTEN_PORT=8080
ENV LIMESURVEY_VERSION=$version
# Download, unzip and chmod LimeSurvey from GitHub (defaults to the official LimeSurvey/LimeSurvey repository)
RUN set -ex; \
curl -sSL "${archive_url}" --output /tmp/limesurvey.tar.gz && \

View File

@@ -1,9 +1,5 @@
FROM php:8.0-fpm-alpine
LABEL maintainer="markus@martialblog.de"
ARG version="5.3.18+220530"
ARG sha256_checksum="3b866045dcefd78dab39bcef186a8e4ca6408c08e4c43b636415e75610fa9434"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=www-data
# Install OS dependencies
RUN set -ex; \
@@ -38,6 +34,12 @@ RUN set -ex; \
tidy \
zip
ARG version="5.3.25+220718"
ARG sha256_checksum="de2dcaf013a2e8c4c10d1890f5446d9933f63d0fbbd026ddc7a15ac48f259a4b"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=www-data
ENV LIMESURVEY_VERSION=$version
# Download, unzip and chmod LimeSurvey from GitHub (defaults to the official LimeSurvey/LimeSurvey repository)
RUN set -ex; \
curl -sSL "${archive_url}" --output /tmp/limesurvey.tar.gz && \

View File

@@ -1,9 +1,5 @@
FROM php:8.0-fpm
LABEL maintainer="markus@martialblog.de"
ARG version="5.3.18+220530"
ARG sha256_checksum="3b866045dcefd78dab39bcef186a8e4ca6408c08e4c43b636415e75610fa9434"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=www-data
# Install OS dependencies
RUN set -ex; \
@@ -50,6 +46,10 @@ RUN set -ex; \
tidy \
zip
ARG version="5.3.25+220718"
ARG sha256_checksum="de2dcaf013a2e8c4c10d1890f5446d9933f63d0fbbd026ddc7a15ac48f259a4b"
ARG archive_url="https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz"
ARG USER=www-data
ENV LIMESURVEY_VERSION=$version
# Download, unzip and chmod LimeSurvey from GitHub (defaults to the official LimeSurvey/LimeSurvey repository)