Spaces:
Build error
Build error
Jordan Schalter
commited on
Commit
·
b563b50
1
Parent(s):
4830dc6
Add application file
Browse files- entrypoint.sh +33 -0
entrypoint.sh
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
|
3 |
+
ORIGINALDIR=/content/app
|
4 |
+
# Use predefined DATADIR if it is defined
|
5 |
+
[[ x"${DATADIR}" == "x" ]] && DATADIR=/content/data
|
6 |
+
|
7 |
+
# Make persistent dir from original dir
|
8 |
+
function mklink () {
|
9 |
+
mkdir -p $DATADIR/$1
|
10 |
+
ln -s $DATADIR/$1 $ORIGINALDIR
|
11 |
+
}
|
12 |
+
|
13 |
+
# Copy old files from import dir
|
14 |
+
function import () {
|
15 |
+
(test -d /import/$1 && cd /import/$1 && cp -Rpn . $DATADIR/$1/)
|
16 |
+
}
|
17 |
+
|
18 |
+
cd $ORIGINALDIR
|
19 |
+
|
20 |
+
# models
|
21 |
+
mklink models
|
22 |
+
# Copy original files
|
23 |
+
(cd $ORIGINALDIR/models.org && cp -Rpn . $ORIGINALDIR/models/)
|
24 |
+
# Import old files
|
25 |
+
import models
|
26 |
+
|
27 |
+
# outputs
|
28 |
+
mklink outputs
|
29 |
+
# Import old files
|
30 |
+
import outputs
|
31 |
+
|
32 |
+
# Start application
|
33 |
+
python launch.py $*
|