File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
FROM lukemathwalker/cargo-chef:latest-rust-1 AS chef
2
2
WORKDIR app
3
3
4
+ LABEL org.opencontainers.image.source=https://github.com/paradigmxyz/reth
5
+ LABEL org.opencontainers.image.licenses="MIT OR Apache-2.0"
6
+
4
7
# Builds a cargo-chef plan
5
8
FROM chef AS planner
6
9
COPY . .
@@ -31,4 +34,4 @@ WORKDIR app
31
34
COPY --from=builder /app/target/release/reth /usr/local/bin
32
35
33
36
EXPOSE 30303 30303/udp 9000 8545 8546
34
- ENTRYPOINT ["/usr/local/bin/reth" , "node" ]
37
+ ENTRYPOINT ["/usr/local/bin/reth" ]
Original file line number Diff line number Diff line change 3
3
# locatable in `./dist/bin/$TARGETARCH`
4
4
FROM --platform=$TARGETPLATFORM ubuntu:22.04
5
5
6
+ LABEL org.opencontainers.image.source=https://github.com/paradigmxyz/reth
7
+ LABEL org.opencontainers.image.licenses="MIT OR Apache-2.0"
8
+
6
9
# Filled by docker buildx
7
10
ARG TARGETARCH
8
11
9
12
COPY ./dist/bin/$TARGETARCH/reth /usr/local/bin/reth
10
13
11
14
EXPOSE 30303 30303/udp 9000 8545 8546
12
- ENTRYPOINT ["/usr/local/bin/reth", "node" ]
15
+ ENTRYPOINT ["/usr/local/bin/reth"]
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ docker pull ghcr.io/paradigmxyz/reth:v0.0.1
27
27
You can test the image with:
28
28
29
29
``` bash
30
- docker run --rm ghcr.io/paradigmxyz/reth reth --version
30
+ docker run --rm ghcr.io/paradigmxyz/reth --version
31
31
```
32
32
33
33
If you can see the latest [ Reth release] ( https://github.com/paradigmxyz/reth/releases ) version, then you've successfully installed Reth via Docker.
@@ -43,5 +43,5 @@ docker build . -t reth:local
43
43
The build will likely take several minutes. Once it's built, test it with:
44
44
45
45
``` bash
46
- docker run reth:local reth --version
46
+ docker run reth:local --version
47
47
```
You can’t perform that action at this time.
0 commit comments