AurelioAguirre commited on
Commit
0a8c1b6
·
1 Parent(s): 2e9cfee

Updated run.sh and Dockerfile. small update....again...again.

Browse files
Files changed (1) hide show
  1. run.sh +2 -2
run.sh CHANGED
@@ -31,9 +31,9 @@ parse_yaml() {
31
  local file=$1
32
  if command -v python3 &> /dev/null; then
33
  python3 -c "
34
- import yaml
35
  with open('$file', 'r') as f:
36
- config = yaml.safe_load(f)
37
  print(config['server']['port'])
38
  print(config['server']['host'])
39
  "
 
31
  local file=$1
32
  if command -v python3 &> /dev/null; then
33
  python3 -c "
34
+ import pyyaml
35
  with open('$file', 'r') as f:
36
+ config = pyyaml.safe_load(f)
37
  print(config['server']['port'])
38
  print(config['server']['host'])
39
  "