Updated Docker File (markdown)

Pablo Revilla
2025-05-30 17:40:12 -07:00
parent 510aada235
commit 8e3befb3e2
+7
@@ -43,4 +43,11 @@ RUN chmod +x /app/start.sh
# Start the application using the conda environment
CMD ["/app/start.sh"]
```
start.sh script
```
#!/bin/bash
/opt/conda/envs/meshview/bin/python /app/startdb.py --config /app/config.ini &
/opt/conda/envs/meshview/bin/python /app/main.py --config /app/config.ini &
wait
```