arshy commited on
Commit
8e635d7
1 Parent(s): 7108a33
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. 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 --global --add safe.directory /app
10
- git config --global --add safe.directory /app/olas-predict-benchmark
11
- git config --global --add safe.directory /app/olas-predict-benchmark/benchmark/mech
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