-
Notifications
You must be signed in to change notification settings - Fork 23
Backport Jetty 12 and dep bumps to 8.x #320
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
Open
nmburgan
wants to merge
14
commits into
8.x
Choose a base branch
from
jetty12
base: 8.x
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+57
−75
Open
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
3541f60
Update dependencies for Jetty 12 migration
austb c6f0202
More dep bumps
nmburgan db1c943
Un-variablize ring-core version
nmburgan 675ce46
Update dependency ring:ring-core to v1.15.4
renovate[bot] 0e5f121
Update dependency org.clojure:tools.namespace to v1
renovate[bot] 7209d28
Update dependency net.logstash.logback:logstash-logback-encoder to v9
renovate[bot] 203e234
Use Ruby 4 for builder image and cache it
nmburgan 014ece6
Bump min lein version to 2.12
nmburgan 2ee4e44
Update ezbake to 2.7.7
nmburgan 34bd1f2
Bump actions/cache from 4 to 5
dependabot[bot] 51a3a27
Update dependency org.openvoxproject:trapperkeeper-webserver to v12.0.2
renovate[bot] 834e2f6
Update dependency org.clojure:clojure to v1.12.5
renovate[bot] 744546a
Update slf4j-version to v2.0.18
renovate[bot] 4bf845f
Update dependency org.ow2.asm:asm to v9.10
renovate[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,19 +1,16 @@ | ||
| FROM almalinux:9 | ||
| FROM ruby:4.0-bookworm | ||
|
|
||
| WORKDIR / | ||
| RUN apt-get update && \ | ||
| apt-get install -y --no-install-recommends \ | ||
| openjdk-17-jdk-headless \ | ||
| rpm \ | ||
| && rm -rf /var/lib/apt/lists/* | ||
|
|
||
| RUN dnf install -y --enablerepo=crb vim wget git rpm-build java-17-openjdk java-17-openjdk-devel libyaml-devel zlib zlib-devel gcc-c++ patch readline readline-devel libffi-devel openssl-devel make bzip2 autoconf automake libtool bison sqlite-devel | ||
| RUN wget https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein | ||
| RUN chmod a+x lein | ||
| RUN mv lein /usr/local/bin | ||
| RUN wget -q https://github.com/rbenv/rbenv-installer/raw/HEAD/bin/rbenv-installer -O- | bash | ||
| # todo: it would be great if we could get the used ruby version from openvox-agent and use it here | ||
| # and maybe don't randomly download rbenv and leiningen | ||
| # and how bad is it that we hardcode java 11 above? | ||
| RUN /bin/bash --login -c 'rbenv install 3.2.9' | ||
| RUN /bin/bash --login -c 'rbenv global 3.2.9' | ||
| RUN git config --global user.email "openvox@voxpupuli.org" | ||
| RUN git config --global user.name "Vox Pupuli" | ||
| RUN git config --global --add safe.directory /code | ||
| RUN wget -q https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein -O /usr/local/bin/lein && \ | ||
| chmod a+x /usr/local/bin/lein | ||
|
|
||
| CMD ["tail -f /dev/null"] | ||
| RUN git config --global user.email "openvox@voxpupuli.org" && \ | ||
| git config --global user.name "Vox Pupuli" && \ | ||
| git config --global --add safe.directory /code | ||
|
|
||
| CMD ["tail", "-f", "/dev/null"] | ||
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.