Skip to content

Commit

Permalink
Merge pull request #3 from klkvr/klkvr/update-rev
Browse files Browse the repository at this point in the history
Set docker image
  • Loading branch information
fgimenez authored Aug 5, 2024
2 parents be033f0 + b08ecae commit 9a03ced
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,9 @@ RUN mkdir build && \
-DCMAKE_CXX_FLAGS="-Wno-error=conversion" && \
make solc -j$(nproc)

FROM ubuntu:jammy-20240212

COPY --from=solc-builder /app/solidity/build/solc/solc /app/solc
WORKDIR /app/root
ENTRYPOINT ["/app/solidity/build/solc/solc"]

ENTRYPOINT ["/app/solc"]
2 changes: 1 addition & 1 deletion eof-solc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash

docker run -i -v $(pwd):/app/root eof-solc "$@"
docker run --rm -i -v $(pwd):/app/root ghcr.io/paradigmxyz/forge-eof:latest "$@"

0 comments on commit 9a03ced

Please sign in to comment.