Compare commits

..

9 Commits

Author SHA1 Message Date
Markus Opolka
10c98a5eb4 Upgrading to Version 3.17.6+190624 2019-06-28 09:44:23 +02:00
Markus Opolka
a665b512e4 Upgrading to Version 3.17.5+190604 2019-06-26 15:45:38 +02:00
Markus Opolka
0e5571811f Upgrading to Version 3.17.4+190529 2019-06-04 18:37:02 +02:00
Markus Opolka
26a95472a7 Upgrading to Version 3.17.3+190429 2019-05-31 09:03:27 +02:00
Markus Opolka
423f4c6133 Add makefile 2019-05-09 10:30:38 +02:00
Markus Opolka
80bc3f4319 Upgrading to Version 3.17.1+190408 2019-04-30 08:37:21 +02:00
Markus Opolka
c30e0878e2 Upgrading to 3.17.0+190402 2019-04-10 18:51:43 +02:00
Markus Opolka
b44b4c2371 Merge pull request #16 from martialblog/checksum
Fix sha256sum check
2019-04-04 09:10:31 +02:00
Markus Opolka
c655c4cf53 Fix sha256sum check
- Its two spaces... TWO SPACES!
 - https://github.com/gliderlabs/docker-alpine/issues/174#issuecomment-222951567
2019-04-04 09:02:47 +02:00
4 changed files with 17 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
FROM php:7.2-apache
LABEL maintainer="markus@martialblog.de"
ARG version='3.16.1+190314'
ARG sha256_checksum='cfed9f8f8e4aa7fe70ae6c3e946f6f33d8aa3aab38f7ac994054af595b11f0a3'
ARG version='3.17.6+190624'
ARG sha256_checksum='5ff2959c235010ba5b29ab84285df23339b92a99fc334756e2c531671b3283c2'
# Install OS dependencies
RUN set -ex; \
@@ -57,7 +57,7 @@ RUN mv "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
ADD "https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" /tmp
RUN set -ex; \
echo "${sha256_checksum} /tmp/${version}.tar.gz" | sha256sum -c - && \
echo "${sha256_checksum} /tmp/${version}.tar.gz" | sha256sum -c - && \
\
tar xzvf "/tmp/${version}.tar.gz" --strip-components=1 -C /var/www/html/ && \
rm -f "/tmp/${version}.tar.gz" && \

View File

@@ -1,7 +1,7 @@
FROM php:7.2-fpm-alpine
LABEL maintainer="markus@martialblog.de"
ARG version='3.16.1+190314'
ARG sha256_checksum='cfed9f8f8e4aa7fe70ae6c3e946f6f33d8aa3aab38f7ac994054af595b11f0a3'
ARG version='3.17.6+190624'
ARG sha256_checksum='5ff2959c235010ba5b29ab84285df23339b92a99fc334756e2c531671b3283c2'
# Install OS dependencies
RUN set -ex; \
@@ -30,7 +30,7 @@ RUN set -ex; \
ADD "https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" /tmp
RUN set -ex; \
echo "${sha256_checksum} /tmp/${version}.tar.gz" | sha256sum -c - && \
echo "${sha256_checksum} /tmp/${version}.tar.gz" | sha256sum -c - && \
\
tar xzvf "/tmp/${version}.tar.gz" --strip-components=1 -C /var/www/html/ && \
\

View File

@@ -1,7 +1,7 @@
FROM php:7.2-fpm
LABEL maintainer="markus@martialblog.de"
ARG version='3.16.1+190314'
ARG sha256_checksum='cfed9f8f8e4aa7fe70ae6c3e946f6f33d8aa3aab38f7ac994054af595b11f0a3'
ARG version='3.17.6+190624'
ARG sha256_checksum='5ff2959c235010ba5b29ab84285df23339b92a99fc334756e2c531671b3283c2'
# Install OS dependencies
RUN set -ex; \
@@ -44,7 +44,7 @@ ENV LIMESURVEY_VERSION=$version
ADD "https://github.com/LimeSurvey/LimeSurvey/archive/${version}.tar.gz" /tmp
RUN set -ex; \
echo "${sha256_checksum} /tmp/${version}.tar.gz" | sha256sum -c - && \
echo "${sha256_checksum} /tmp/${version}.tar.gz" | sha256sum -c - && \
\
tar xzvf "/tmp/${version}.tar.gz" --strip-components=1 -C /var/www/html/ && \
rm -f "/tmp/${version}.tar.gz" && \

8
makefile Normal file
View File

@@ -0,0 +1,8 @@
.PHONY: apache fpm fpm-alpine
apache:
docker build --pull -t limesurvey:apache apache
fpm-alpine:
docker build --pull -t limesurvey:fpm-alpine fpm-alpine
fpm:
docker build --pull -t limesurvey:fpm fpm