-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
810fb1c
commit 0c6f064
Showing
12 changed files
with
243 additions
and
135 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,22 @@ | ||
ARG Z3_VERSION | ||
ARG K_COMMIT | ||
|
||
ARG Z3_VERSION=4.12.1 | ||
FROM runtimeverificationinc/z3:ubuntu-jammy-${Z3_VERSION} as Z3 | ||
ARG LLVM_VERSION | ||
|
||
ARG K_COMMIT | ||
FROM runtimeverificationinc/kframework-k:ubuntu-jammy-${K_COMMIT} | ||
|
||
COPY --from=Z3 /usr/bin/z3 /usr/bin/z3 | ||
FROM runtimeverificationinc/kframework-k:ubuntu-noble-${K_COMMIT} | ||
|
||
RUN apt-get update \ | ||
&& apt-get upgrade --yes \ | ||
&& apt-get install --yes \ | ||
curl | ||
# cmake \ | ||
# pandoc \ | ||
# python3 \ | ||
# python3-pip \ | ||
# wabt | ||
|
||
ARG USER_ID=1000 | ||
ARG GROUP_ID=1000 | ||
ARG USER_ID=1001 | ||
ARG GROUP_ID=1001 | ||
RUN groupadd -g $GROUP_ID user && useradd -m -u $USER_ID -s /bin/sh -g user user | ||
|
||
USER user:user | ||
WORKDIR /home/user | ||
|
||
RUN curl -sSL https://install.python-poetry.org | python3 - --version 1.7.1 | ||
|
||
# RUN pip3 install --user \ | ||
# cytoolz \ | ||
# numpy | ||
|
||
ENV PATH=/home/user/.local/bin:$PATH |
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
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
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
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
Oops, something went wrong.