-
Notifications
You must be signed in to change notification settings - Fork 2
chore:1.4.9-testnet #78
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -4,7 +4,7 @@ RUN adduser --disabled-password --gecos "" --no-create-home --uid 1000 cronos | |||||||||||||||||||
|
||||||||||||||||||||
RUN mkdir -p /home/cronos/data && mkdir -p /home/cronos/config | ||||||||||||||||||||
RUN apt-get update -y && apt-get install wget curl procps net-tools jq lz4 -y | ||||||||||||||||||||
RUN cd /tmp && wget --no-check-certificate https://github.com/crypto-org-chain/cronos/releases/download/v1.4.9/cronos_1.4.9_Linux_x86_64.tar.gz && tar -xvf cronos_1.4.9_Linux_x86_64.tar.gz \ | ||||||||||||||||||||
RUN cd /tmp && wget --no-check-certificate https://github.com/crypto-org-chain/cronos/releases/download/v1.4.9/cronos_1.4.9-testnet_Linux_x86_64.tar.gz && tar -xvf cronos_1.4.9_Linux_x86_64.tar.gz \ | ||||||||||||||||||||
&& rm cronos_1.4.9_Linux_x86_64.tar.gz && mv ./* /home/cronos/ | ||||||||||||||||||||
RUN chown -R cronos:cronos /home/cronos && chmod 1777 /tmp | ||||||||||||||||||||
Comment on lines
+7
to
9
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Archive name mismatch will break the build The file you now download is -RUN cd /tmp && wget --no-check-certificate https://github.com/crypto-org-chain/cronos/releases/download/v1.4.9/cronos_1.4.9-testnet_Linux_x86_64.tar.gz && tar -xvf cronos_1.4.9_Linux_x86_64.tar.gz \
- && rm cronos_1.4.9_Linux_x86_64.tar.gz && mv ./* /home/cronos/
+RUN cd /tmp \
+ && wget --no-check-certificate https://github.com/crypto-org-chain/cronos/releases/download/v1.4.9-testnet/cronos_1.4.9-testnet_Linux_x86_64.tar.gz \
+ && tar -xvf cronos_1.4.9-testnet_Linux_x86_64.tar.gz \
+ && rm cronos_1.4.9-testnet_Linux_x86_64.tar.gz \
+ && mv ./* /home/cronos/ (Notice I also fixed the release path to 📝 Committable suggestion
Suggested change
🧰 Tools🪛 Checkov (3.2.334)[HIGH] 7-8: Ensure that certificate validation isn't disabled with wget (CKV2_DOCKER_3) 🤖 Prompt for AI Agents
|
||||||||||||||||||||
|
||||||||||||||||||||
|
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.
🛠️ Refactor suggestion
Avoid
--no-check-certificate
unless absolutely necessaryDisabling TLS verification silences MITM-protection and triggers CVE scanners (CKV2_DOCKER_3).
If GitHub’s certificate problems are not expected, remove the flag; otherwise fetch the artifact with
curl --proto '=https' --tlsv1.2 --location
and pin the SHA256 to guarantee integrity.🧰 Tools
🪛 Checkov (3.2.334)
[HIGH] 7-8: Ensure that certificate validation isn't disabled with wget
(CKV2_DOCKER_3)
🤖 Prompt for AI Agents