RUN curl "https://gitlab.software.geant.org/edugain/eccs/-/archive/v$ECCS_VERSION/eccs-v$ECCS_VERSION.tar.gz"--output eccs-v$ECCS_VERSION.tar.gz
RUN tar xzf eccs-v$ECCS_VERSION.tar.gz &&rm eccs-v$ECCS_VERSION.tar.gz
RUN mv eccs-v$ECCS_VERSION eccs
# Get Google Chrome & Google Chrome Driver
WORKDIR eccs
RUN curl "https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb"--output google-chrome-stable_current_amd64.deb
RUN apt install-y ./google-chrome-stable_current_amd64.deb --no-install-recommends
RUN curl "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/115.0.5790.110/linux64/chromedriver-linux64.zip"--output chromedriver_linux64.zip
RUN unzip chromedriver_linux64.zip
RUN rm chromedriver_linux64.zip google-chrome-stable_current_amd64.deb
RUN cd /root
# Get XMLSecTool
RUN wget "https://corretto.aws/downloads/resources/11.0.6.10.1/B04F24E3.pub"-O /tmp/amazon-corretto.pub \
RUN apt-get update && apt-get install-y java-11-amazon-corretto-jdk
RUN curl "https://shibboleth.net/downloads/tools/xmlsectool/$XMLSECTOOL_VERSION/xmlsectool-$XMLSECTOOL_VERSION-bin.zip"--output xmlsectool-$XMLSECTOOL_VERSION-bin.zip