-
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 #411 from grycap/devel
Set version 1.6.1
- Loading branch information
Showing
5 changed files
with
10 additions
and
5 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Dockerfile to create a container with the IM service | ||
FROM grycap/jenkins:ubuntu16.04-im | ||
MAINTAINER Miguel Caballer <[email protected]> | ||
LABEL version="1.6.0" | ||
LABEL version="1.6.1" | ||
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 with python 3 | ||
FROM ubuntu:16.04 | ||
MAINTAINER Miguel Caballer <[email protected]> | ||
LABEL version="1.6.0" | ||
LABEL version="1.6.1" | ||
LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im) with python 3" | ||
EXPOSE 8899 8800 | ||
RUN apt-get update && apt-get install -y gcc python3-dbg python3-dev python3-pip libmysqld-dev openssh-client sshpass libssl-dev libffi-dev python3-requests python3-mysqldb | ||
|
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 | ||
MAINTAINER Miguel Caballer <[email protected]> | ||
LABEL version="1.6.0" | ||
LABEL version="1.6.1" | ||
LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)" | ||
EXPOSE 8899 8800 | ||
# Install Ansible | ||
|
@@ -23,7 +23,7 @@ RUN wget https://launchpad.net/ubuntu/+archive/primary/+files/python-msrest_0.4. | |
|
||
# Install IM | ||
RUN wget https://github.com/grycap/RADL/releases/download/v1.1.0/python-radl_1.1.0-1_all.deb && \ | ||
wget https://github.com/grycap/im/releases/download/v1.6.0/python-im_1.6.0-1_all.deb && \ | ||
wget https://github.com/grycap/im/releases/download/v1.6.1/python-im_1.6.1-1_all.deb && \ | ||
dpkg -i python-radl_*_all.deb ; \ | ||
dpkg -i python-im_*_all.deb ; \ | ||
rm *.deb && \ | ||
|