-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from grycap/devel
Set version num
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Dockerfile to create a container with the IM web GUI | ||
FROM php:apache | ||
MAINTAINER Miguel Caballer <[email protected]> | ||
LABEL version="1.5.9" | ||
LABEL version="1.5.10" | ||
LABEL description="Container image to run the IM web GUI. (http://www.grycap.upv.es/im)" | ||
|
||
ADD default-ssl.conf /etc/apache2/sites-enabled/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# Dockerfile to create a container with the IM web GUI | ||
FROM php:apache | ||
MAINTAINER Miguel Caballer <[email protected]> | ||
LABEL version="1.5.9" | ||
LABEL version="1.5.10" | ||
LABEL description="Container image to run the IM web GUI. (http://www.grycap.upv.es/im)" | ||
|
||
RUN apt-get update && apt-get install --no-install-recommends -y wget unzip && rm -rf /var/lib/apt/lists/* && \ | ||
wget https://github.com/grycap/im-web/archive/master.zip && unzip master.zip && rm -f master.zip && mv im-web-master /var/www/html/im-web && \ | ||
wget https://github.com/grycap/im-web/archive/master.zip && unzip master.zip && rm -f master.zip && mv im-web-master /var/www/html/im-web && \ | ||
mkdir /var/www/www-data && mv /var/www/html/im-web/im.db /var/www/www-data/im.db && \ | ||
chown -R www-data /var/www && \ | ||
apt-get purge -y wget unzip && \ | ||
|