-
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 #1556 from grycap/oidc_groups
OIDC groups
- Loading branch information
Showing
9 changed files
with
39 additions
and
18 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
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 ubuntu:22.04 | ||
ARG BRANCH=devel | ||
LABEL maintainer="Miguel Caballer <[email protected]>" | ||
LABEL version="1.16.0" | ||
LABEL version="1.17.0" | ||
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:22.04 | ||
LABEL maintainer="Miguel Caballer <[email protected]>" | ||
LABEL version="1.16.0" | ||
LABEL version="1.17.0" | ||
LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)" | ||
EXPOSE 8899 8800 | ||
|
||
|
@@ -13,7 +13,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y python3 python3 | |
RUN apt-get update && apt-get install --no-install-recommends -y python3-setuptools python3-pip git && \ | ||
pip3 install msrest msrestazure azure-common azure-mgmt-storage azure-mgmt-compute azure-mgmt-network azure-mgmt-resource azure-mgmt-dns azure-identity==1.8.0 && \ | ||
pip3 install pyOpenSSL cheroot xmltodict pymongo ansible==6.7.0&& \ | ||
pip3 install urllib3==1.26.18 IM==1.16.0 && \ | ||
pip3 install urllib3==1.26.18 IM==1.17.0 && \ | ||
apt-get purge -y python3-pip git && \ | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Dockerfile to create a container with the IM service | ||
FROM alpine:3.16 | ||
LABEL maintainer="Miguel Caballer <[email protected]>" | ||
LABEL version="1.16.0" | ||
LABEL version="1.17.0" | ||
LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)" | ||
EXPOSE 8899 8800 | ||
|
||
|
@@ -34,7 +34,7 @@ RUN pip3 install pyOpenSSL \ | |
RUN pip3 install ansible==6.4.0 | ||
|
||
RUN apk add --no-cache git &&\ | ||
pip3 install IM==1.16.0 &&\ | ||
pip3 install IM==1.17.0 &&\ | ||
apk del git | ||
|
||
# Copy a ansible.cfg with correct minimum values | ||
|
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