-
Notifications
You must be signed in to change notification settings - Fork 2
v1.4.8-testnet #74
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?
v1.4.8-testnet #74
Changes from 1 commit
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,8 +4,8 @@ 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.7/cronos_1.4.7_Linux_x86_64.tar.gz && tar -xvf cronos_1.4.7_Linux_x86_64.tar.gz \ | ||||||||||
&& rm cronos_1.4.7_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.7/cronos_1.4.8-testnet_Linux_x86_64.tar.gz && tar -xvf cronos_1.4.8-testnet_Linux_x86_64.tar.gz \ | ||||||||||
&& rm cronos_1.4.8-testnet_Linux_x86_64.tar.gz && mv ./* /home/cronos/ | ||||||||||
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. 🛠️ Refactor suggestion Wildcard After extraction, -&& rm cronos_1.4.8-testnet_Linux_x86_64.tar.gz && mv ./* /home/cronos/
+&& rm cronos_1.4.8-testnet_Linux_x86_64.tar.gz \
+&& mv cronos_1.4.8-testnet_Linux_x86_64/* /home/cronos/ \
+&& rmdir cronos_1.4.8-testnet_Linux_x86_64 📝 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
|
||||||||||
RUN chown -R cronos:cronos /home/cronos && chmod 1777 /tmp | ||||||||||
|
||||||||||
USER root | ||||||||||
|
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.
--no-check-certificate
disables TLS verificationDisabling certificate checks defeats HTTPS and exposes the supply-chain to MITM attacks. Remove the flag and, ideally, verify a SHA-256 checksum or GPG signature instead.
📝 Committable suggestion
🧰 Tools
🪛 Checkov (3.2.334)
[HIGH] 7-8: Ensure that certificate validation isn't disabled with wget
(CKV2_DOCKER_3)
🤖 Prompt for AI Agents
Download URL points to old tag ‒ build will 404
The path still uses
releases/download/v1.4.7/…1.4.8-testnet…
.Because GitHub release assets are nested under the matching tag, the image will fail at build time with
404: Not Found
.📝 Committable suggestion
🧰 Tools
🪛 Checkov (3.2.334)
[HIGH] 7-8: Ensure that certificate validation isn't disabled with wget
(CKV2_DOCKER_3)
🤖 Prompt for AI Agents