Spaces:
Runtime error
Runtime error
updates
Browse files- Dockerfile +1 -1
- start.sh +5 -3
Dockerfile
CHANGED
@@ -32,4 +32,4 @@ RUN ls -la /app
|
|
32 |
|
33 |
RUN chmod +x /app/start.sh
|
34 |
|
35 |
-
CMD ["/app/start.sh"]
|
|
|
32 |
|
33 |
RUN chmod +x /app/start.sh
|
34 |
|
35 |
+
CMD ["/app/start.sh"]
|
start.sh
CHANGED
@@ -4,11 +4,13 @@
|
|
4 |
git submodule init
|
5 |
git submodule update --init --recursive
|
6 |
|
|
|
|
|
7 |
ls -la
|
8 |
|
9 |
-
git config --
|
10 |
-
git config --
|
11 |
-
git config --
|
12 |
|
13 |
# Checkout specific branches for your submodules
|
14 |
cd olas-predict-benchmark/benchmark
|
|
|
4 |
git submodule init
|
5 |
git submodule update --init --recursive
|
6 |
|
7 |
+
export POETRY_CACHE_DIR="/app"
|
8 |
+
|
9 |
ls -la
|
10 |
|
11 |
+
git config --system --add safe.directory /app
|
12 |
+
git config --system --add safe.directory /app/olas-predict-benchmark
|
13 |
+
git config --system --add safe.directory /app/olas-predict-benchmark/benchmark/mech
|
14 |
|
15 |
# Checkout specific branches for your submodules
|
16 |
cd olas-predict-benchmark/benchmark
|