-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build a SSP debug SP #13
base: main
Are you sure you want to change the base?
Conversation
b30dcdb
to
65658e4
Compare
docker/ssp-debug-sp/Dockerfile
Outdated
# Install Composer | ||
COPY --from=composer /usr/bin/composer /usr/local/bin/composer | ||
|
||
# Fix npm |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NPM is not installed. Do you really need these steps?
# Install SSP: Clone and install rev adf1eb8 of SSP | ||
WORKDIR /var/simplesamlphp/ | ||
RUN git clone https://github.com/simplesamlphp/simplesamlphp.git /var/simplesamlphp | ||
RUN git reset --hard adf1eb8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the --hard reset here? And not a tag or a version?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point, I want to install this specific revision as it is also used in the Stepup-deploy SSP task. Using gir reset
works for me in that respect.
As a step forward for this, I'd like to go to a more recent SSP version. But we might not be compatible with those versions yet. Given we use some older SSP constructions in the debug sp module.
@@ -0,0 +1,42 @@ | |||
FROM webdevops/php-nginx:7.2 AS ssp-debug-sp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the "ancient" 7.2 and not 8.1 ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point, and I tested if we could use a more recent version. But the currently installed SSP version restricts us to using a 7.2 PHP.
e3b4f2d
to
4b5d0e6
Compare
6303bcd
to
e24e14c
Compare
e295c3b
to
a299d29
Compare
a299d29
to
e9e1452
Compare
No description provided.