Skip to content

Commit

Permalink
fix: docker install ca certificates
Browse files Browse the repository at this point in the history
  • Loading branch information
Vid201 committed Jun 17, 2024
1 parent 5e75010 commit dd34ed0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL org.opencontainers.image.description="Silius - ERC-4337 (Account Abstracti
LABEL org.opencontainers.image.licenses="MIT OR Apache-2.0"

# Install system dependencies
RUN apt-get update && apt-get -y upgrade && apt-get install -y wget pkg-config libclang-dev libssl-dev
RUN apt-get update && apt-get -y upgrade && apt-get install -y wget pkg-config libclang-dev libssl-dev ca-certificates

# Install solc
RUN wget -c "https://github.com/ethereum/solidity/releases/download/v0.8.20/solc-static-linux"
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile.cross
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ LABEL org.opencontainers.image.source=https://github.com/silius-rs/silius
LABEL org.opencontainers.image.description="Silius - ERC-4337 (Account Abstraction) bundler implementation in Rust."
LABEL org.opencontainers.image.licenses="MIT OR Apache-2.0"

RUN apt-get update && apt-get -y upgrade && apt-get install -y ca-certificates

ARG TARGETARCH

COPY ./dist/bin/$TARGETARCH/silius /usr/local/bin/silius
Expand Down

0 comments on commit dd34ed0

Please sign in to comment.