diff --git a/.dockerignore b/.dockerignore index 2fa10301fb..6e826d3582 100644 --- a/.dockerignore +++ b/.dockerignore @@ -2,3 +2,4 @@ /book /assets /.github +Dockerfile diff --git a/Dockerfile b/Dockerfile index 3df619c0ed..1a1879d060 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,10 +14,8 @@ COPY . reth # Build reth RUN cd reth && cargo build --all --locked --profile $BUILD_PROFILE -# Use alpine as the release image -FROM frolvlad/alpine-glibc - -RUN apk add --no-cache linux-headers +# Use Ubuntu as the release image +FROM ubuntu # Copy the built reth binary from the previous stage COPY --from=builder /reth/target/release/reth /usr/local/bin/reth