-
-
Notifications
You must be signed in to change notification settings - Fork 17
Reinstante openssl dependencies #273
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
Conversation
WalkthroughThe Dockerfile for the Tor addon was updated to explicitly install the Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant Docker Build
participant Alpine Package Manager
participant Tor Addon
User->>Docker Build: Build Tor Addon image
Docker Build->>Alpine Package Manager: Install tor, openssl, and dependencies
Alpine Package Manager-->>Docker Build: Packages installed
Docker Build->>Tor Addon: Image includes openssl binary
Assessment against linked issues
Suggested labels
Poem
Tip ⚡️ Faster reviews with caching
Enjoy the performance boost—your workflow just got faster. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Actionable comments posted: 0
🧹 Nitpick comments (1)
tor/Dockerfile (1)
17-21
: Refactor for maintainability: extract OpenSSL version into an ARG
Reinstatingopenssl=3.3.3-r0
ensures the binary and libraries are available at runtime, which addresses issue #271. To simplify future upgrades when the base image is bumped, consider introducing anARG OPENSSL_VERSION
(similar to the other proxies) and referencing it in theapk add
command:+ARG OPENSSL_VERSION=3.3.3-r0 ... RUN \ apk add --no-cache \ coreutils=9.5-r2 \ - openssl=3.3.3-r0 \ + openssl=${OPENSSL_VERSION} \ tor=0.4.8.16-r0 \This makes updating OpenSSL versions more consistent and centralized.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
tor/Dockerfile
(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (3)
- GitHub Check: workflows / Build aarch64
- GitHub Check: workflows / Build armv7
- GitHub Check: workflows / Build amd64
Proposed Changes
Re-instantes the openssl dependencies
Related Issues
fixes #271
Summary by CodeRabbit