We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6209195 + 458c59b commit 6ce39efCopy full SHA for 6ce39ef
init_env.sh
@@ -0,0 +1,5 @@
1
+#!/bin/sh
2
+DIR="$( cd "$( dirname "$0" )" && pwd )"
3
+
4
+# build docker python environment
5
+docker build -t python3 -f $DIR/dockerfiles/python3.Dockerfile .
package.json
@@ -3,7 +3,8 @@
"start:dev": "npx nodemon",
"build": "rimraf ./build && tsc",
"test": "jest",
6
- "ct": "rm ./temp/*"
+ "ct": "rm ./temp/*",
7
+ "init-env": "chmod 777 ./init_env.sh && ./init_env.sh"
8
},
9
"devDependencies": {
10
"@types/jest": "^29.5.0",
0 commit comments