-
Notifications
You must be signed in to change notification settings - Fork 2
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 #101 from grycap/devel
Devel
- Loading branch information
Showing
5 changed files
with
10 additions
and
7 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,15 +1,15 @@ | ||
# Dockerfile to create a container with the IM client | ||
FROM alpine:3.16 | ||
LABEL maintainer="Miguel Caballer <[email protected]>" | ||
LABEL version="1.7.0" | ||
LABEL version="1.8.0" | ||
LABEL description="Container image to run the IM client. (http://www.grycap.upv.es/im)" | ||
|
||
# Install python3 | ||
RUN apk add --no-cache python3 py3-requests jq bash | ||
|
||
# Install IM client | ||
RUN apk add --no-cache py3-pip && \ | ||
pip3 install im-client==1.7.0 && \ | ||
pip3 install im-client==1.8.0 && \ | ||
apk del --no-cache py3-pip | ||
|
||
COPY im_client.cfg /im-client/im_client.cfg | ||
|
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 client | ||
FROM ubuntu:22.04 | ||
LABEL maintainer="Miguel Caballer <[email protected]>" | ||
LABEL version="1.7.0-oidc" | ||
LABEL version="1.8.0-oidc" | ||
LABEL description="Container image to run the IM client. (http://www.grycap.upv.es/im)" | ||
|
||
# Install python3 | ||
|
@@ -11,7 +11,7 @@ RUN apt update && \ | |
apt-key adv --keyserver hkp://pgp.surfnet.nl --recv-keys ACDFB08FDC962044D87FF00B512839863D487A87 && \ | ||
apt update && \ | ||
apt install -y --no-install-recommends python3-requests jq python3-pip oidc-agent && \ | ||
pip install im-client==1.7.0 && \ | ||
pip install im-client==1.8.0 && \ | ||
apt-get purge -y python-pip && \ | ||
apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && rm -rf ~/.cache/ | ||
|
||
|
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
|
||
from setuptools import setup | ||
|
||
setup(name="IM-client", version="1.7.0", | ||
setup(name="IM-client", version="1.8.0", | ||
author='GRyCAP - Universitat Politecnica de Valencia', | ||
author_email='[email protected]', | ||
url='http://www.grycap.upv.es/im', | ||
|