Skip to content

Commit

Permalink
ANSSI patch
Browse files Browse the repository at this point in the history
  • Loading branch information
guimard committed Dec 26, 2023
1 parent 2b89a0d commit 8e3aadc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changes

* 2023-12-26: Add patches to authenticate via JWT on authn endpoint
* 2023-12-26: Add patches to authenticate via JWT on authn endpoint + ANSSI patch
* 2023-12-26: 2.18.1
* 2023-12-06: add SAML patch to workaround Forgerock bug
* 2023-11-28: add crowdesc in docs
Expand Down
1 change: 1 addition & 0 deletions manager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ RUN echo "# Install nginx and manager libs" && \
COPY *.patch /

RUN echo auth-to-authn-by-jwt-manager.patch && patch -p1 < auth-to-authn-by-jwt-manager.patch && \
echo patch anssi.patch && patch -p1 < anssi.patch && \
rm -f *.patch && \
perl -MLemonldap::NG::Manager::Build -e 'Lemonldap::NG::Manager::Build->run( \
structFile => "/usr/share/lemonldap-ng/manager/htdocs/static/struct.json", \
Expand Down
3 changes: 2 additions & 1 deletion portal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN echo "# Install nginx and portal libs" && \
libconvert-base32-perl libio-string-perl libipc-run-perl \
libgd-securityimage-perl libmime-tools-perl libnet-ldap-perl \
libio-socket-timeout-perl libunicode-string-perl liblasso-perl \
libio-string-perl libemail-sender-perl && \
libio-string-perl libemail-sender-perl \
libcrypt-jwt-perl libdigest-hmac-perl libdata-password-zxcvbn-perl && \
apt autoremove -y && apt clean && rm -rf /var/lib/apt/lists/*

Expand All @@ -29,6 +29,7 @@ COPY *.patch /
RUN echo patch appgrid.patch && patch -p1 < appgrid.patch && \
echo patch jwt-type.patch && patch -p1 < jwt-type.patch && \
echo patch auth-to-authn-by-jwt-portal.patch && patch -p1 < auth-to-authn-by-jwt-portal.patch && \
echo patch anssi.patch && patch -p1 < anssi.patch && \
rm -f *.patch

RUN echo "# Install nginx configuration files" && \
Expand Down

0 comments on commit 8e3aadc

Please sign in to comment.