-
Notifications
You must be signed in to change notification settings - Fork 21
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 #741 from grycap/devel
Set version 1.7.7
- Loading branch information
Showing
5 changed files
with
12 additions
and
6 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
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
FROM grycap/jenkins:ubuntu16.04-im | ||
ARG BRANCH=devel | ||
MAINTAINER Miguel Caballer <[email protected]> | ||
LABEL version="1.7.6" | ||
LABEL version="1.7.7" | ||
LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)" | ||
|
||
EXPOSE 8899 8800 | ||
|
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 service | ||
FROM ubuntu:16.04 | ||
LABEL maintainer="Miguel Caballer <[email protected]>" | ||
LABEL version="1.7.6" | ||
LABEL version="1.7.7" | ||
LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)" | ||
EXPOSE 8899 8800 | ||
|
||
|
@@ -18,7 +18,7 @@ RUN pip3 install msrest msrestazure azure-common azure-mgmt-storage azure-mgmt-c | |
RUN apt-get update && apt-get install --no-install-recommends -y gcc libssl-dev libffi-dev libsqlite3-dev && \ | ||
pip install pycrypto && \ | ||
cd /tmp && git clone https://github.com/indigo-dc/tosca-parser && pip install /tmp/tosca-parser && \ | ||
pip3 install IM==1.7.6 && \ | ||
pip3 install IM==1.7.7 && \ | ||
apt-get remove -y gcc libssl-dev libffi-dev libsqlite3-dev python-dev python-pip && \ | ||
apt-get autoremove -y && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
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 service | ||
FROM ubuntu:18.04 | ||
LABEL maintainer="Miguel Caballer <[email protected]>" | ||
LABEL version="1.7.6" | ||
LABEL version="1.7.7" | ||
LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)" | ||
EXPOSE 8899 8800 | ||
|
||
|
@@ -16,7 +16,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y gcc git libmysq | |
pip install pycrypto && \ | ||
pip install MySQL-python && \ | ||
cd /tmp && git clone https://github.com/indigo-dc/tosca-parser && pip install /tmp/tosca-parser && \ | ||
pip install IM==1.7.6 && \ | ||
pip install IM==1.7.7 && \ | ||
apt-get purge -y gcc git libmysqld-dev libssl-dev libffi-dev libsqlite3-dev python-dev python-pip && \ | ||
apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && rm -rf ~/.cache/ | ||
|
||
|