Skip to content

Parameterize LimeSurvey Version in Dockerfile #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ FROM amd64/php:7.2-apache

LABEL maintainer="Florian JUDITH <[email protected]>"

ENV LIMESURVEY_URL=https://github.com/LimeSurvey/LimeSurvey/archive/2.73.0+171219.tar.gz

RUN mkdir /usr/share/man/man1 && \
mkdir /usr/share/man/man7

Expand Down Expand Up @@ -129,6 +127,9 @@ RUN touch /etc/msmtprc && \
RUN apt-get clean && \
rm -r /var/lib/apt/lists/*

ARG LIMESURVEY_URL=https://github.com/LimeSurvey/LimeSurvey/archive/3.15.8+190130.tar.gz
ENV LIMESURVEY_URL=$LIMESURVEY_URL

# Download and install Limesurvey
RUN cd /var/www/html \
&& curl -L $LIMESURVEY_URL | tar xvz --strip-components=1
Expand All @@ -145,4 +146,4 @@ VOLUME /var/www/html/upload
EXPOSE 80

ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["apache2-foreground"]
CMD ["apache2-foreground"]