Skip to content

Commit

Permalink
ci(cargo-stylus): install docker into docker image (#1065)
Browse files Browse the repository at this point in the history
* ci(cargo-stylus): install docker into docker image

* ci(stylus-verifier): install curl into Dockerfile
  • Loading branch information
rimrakhimov authored Sep 25, 2024
1 parent 538e129 commit 29156bb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion stylus-verifier/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ COPY --from=cache $CARGO_HOME $CARGO_HOME
RUN cargo build --release

FROM ubuntu:20.04 AS run
RUN apt-get update && apt-get install -y libssl1.1 libssl-dev ca-certificates
RUN apt-get update && \
apt-get install -y libssl1.1 libssl-dev ca-certificates curl && \
curl -sSL https://get.docker.com/ | sh

WORKDIR /app
ENV APP_USER=app
Expand Down

0 comments on commit 29156bb

Please sign in to comment.