We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dd0e3b commit 620238dCopy full SHA for 620238d
KexStandaloneBase
@@ -11,8 +11,13 @@ RUN pacman -Syu --noconfirm \
11
# install kex scripts
12
USER root
13
COPY kex-install.sh /usr/bin
14
+COPY kex-prebuild.sh /usr/bin
15
COPY kex-test.sh /usr/bin
16
COPY kex-run.sh /usr/bin
17
RUN chmod a+rwx /usr/bin/kex-install.sh
18
+RUN chmod a+rwx /usr/bin/kex-prebuild.sh
19
RUN chmod a+rwx /usr/bin/kex-test.sh
20
RUN chmod a+rwx /usr/bin/kex-run.sh
21
+
22
+RUN kex-prebuild.sh
23
kex-prebuild.sh
@@ -0,0 +1,7 @@
1
+#!/bin/bash
2
3
+kex-install.sh
4
+cd /home/kex
5
+mvn clean package -Pfull-smt
6
+cd /
7
+rm -rf /home/kex
0 commit comments