Compare commits

...

2 Commits

Author SHA1 Message Date
Markus Opolka
3f2f632edd Updating to Version 3.14.0+180730 2018-07-31 19:25:16 +02:00
Markus Opolka
13064859d8 Fix Travis build 2018-07-30 10:38:55 +02:00
3 changed files with 4 additions and 4 deletions

View File

@@ -6,6 +6,6 @@ services:
matrix:
include:
- env: TAG=martialblog/limesurvey-apache
script: docker build -q -t $TAG -f apache/Dockerfile . && tests/run.sh $TAG
script: cd apache; docker build -q -t $TAG . && cd ..; ./tests/run.sh $TAG
- env: TAG=martialblog/limesurvey-fpm
script: docker build -q -t $TAG -f fpm/Dockerfile . && tests/run.sh $TAG
script: cd fpm; docker build -q -t $TAG . && cd ..; ./tests/run.sh $TAG

View File

@@ -1,6 +1,6 @@
FROM php:7.2-apache
LABEL maintainer="markus@martialblog.de"
ARG version='3.13.1+180629'
ARG version='3.14.0+180730'
# Install OS dependencies
RUN apt-get update && \

View File

@@ -1,6 +1,6 @@
FROM php:7.2-fpm
LABEL maintainer="markus@martialblog.de"
ARG version='3.13.1+180629'
ARG version='3.14.0+180730'
# Install OS dependencies
RUN apt-get update && \