Skip to content

Commit

Permalink
chore: install tini for docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
forcodedancing committed Jul 2, 2024
1 parent b623949 commit 18dcd3b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bsc.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ RUN cp /app/target/$BUILD_PROFILE/bsc-reth /app/bsc-reth
FROM ubuntu AS runtime
WORKDIR /app

# Install tini
RUN apt-get install -y tini

# Copy reth over from the build stage
COPY --from=builder /app/bsc-reth /usr/local/bin

Expand Down
3 changes: 3 additions & 0 deletions op.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ RUN cp /app/target/$BUILD_PROFILE/op-reth /app/op-reth
FROM ubuntu AS runtime
WORKDIR /app

# Install tini
RUN apt-get install -y tini

# Copy reth over from the build stage
COPY --from=builder /app/op-reth /usr/local/bin

Expand Down

0 comments on commit 18dcd3b

Please sign in to comment.