fix(hive+docker): use ubuntu image (#1363)

This commit is contained in:
Georgios Konstantopoulos
2023-02-15 21:07:45 -08:00
committed by GitHub
parent d19720aa77
commit 06036706cc
2 changed files with 3 additions and 4 deletions

View File

@ -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