We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4469c8 commit cb2c435Copy full SHA for cb2c435
clients/aleth:nightly/Dockerfile
@@ -18,13 +18,9 @@ RUN chmod +x /aleth.sh
18
19
RUN apk add --no-cache jq bc bash
20
21
-# The /version.json is a softlink, which hive won't resolve when trying to read it.
22
-# We copy it into a regular file, and also remove the 'bool' field is_prerelease
+# Copy buildinfo into version.json, and also remove the 'bool' field is_prerelease
23
24
-
25
-RUN cat /version.json | jq "del(.is_prerelease)" > /x.json && \
26
- rm /version.json && \
27
- mv /x.json /version.json
+RUN cat /usr/share/aleth/buildinfo.json | jq "del(.is_prerelease)" > /version.json
28
29
# Export the usual networking ports to allow outside access to the node
30
EXPOSE 8545 30303
0 commit comments