-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding dockerfile if we need to control z3 install, cleaning docker b…
…uild action
- Loading branch information
1 parent
49e0b50
commit 67328fb
Showing
2 changed files
with
8 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
FROM ghcr.io/runtimeverification/devops/kup:643101c | ||
ARG KONTROL_RELEASE | ||
FROM runtimeverificationinc/kontrol:ubuntu-jammy-${KONTROL_RELEASE} | ||
|
||
USER root | ||
RUN apt-get update && apt-get install -y \ | ||
git \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
USER ubuntu | ||
USER user | ||
RUN curl -L https://foundry.paradigm.xyz | bash | ||
RUN /home/ubuntu/.foundry/bin/foundryup | ||
RUN /home/user/.foundry/bin/foundryup | ||
|
||
ARG KONTROL_RELEASE=v0.1.15 | ||
RUN kup install kontrol --version v$KONTROL_RELEASE | ||
RUN nix-store --gc | ||
|
||
ENV PATH="/home/ubuntu/.foundry/bin:${PATH}" | ||
ENV PATH="/home/user/.foundry/bin:${PATH}" |