Joshua Sundance Bailey
commited on
Commit
•
6f8b977
1
Parent(s):
ca8380d
numpy & docker startup
Browse files- docker-compose.yml +3 -0
- requirements.txt +1 -0
docker-compose.yml
CHANGED
@@ -19,5 +19,8 @@ services:
|
|
19 |
context: .
|
20 |
dockerfile: Dockerfile
|
21 |
target: runtime
|
|
|
|
|
|
|
22 |
ports:
|
23 |
- "${APP_PORT:-7860}:${APP_PORT:-7860}"
|
|
|
19 |
context: .
|
20 |
dockerfile: Dockerfile
|
21 |
target: runtime
|
22 |
+
depends_on:
|
23 |
+
test:
|
24 |
+
condition: service_completed_successfully
|
25 |
ports:
|
26 |
- "${APP_PORT:-7860}:${APP_PORT:-7860}"
|
requirements.txt
CHANGED
@@ -2,6 +2,7 @@ aiohttp==3.9.1
|
|
2 |
beautifulsoup4==4.12.2
|
3 |
geopandas==0.14.1
|
4 |
lxml==4.9.3
|
|
|
5 |
pyogrio==0.7.2
|
6 |
restgdf==0.9.7
|
7 |
streamlit==1.29.0
|
|
|
2 |
beautifulsoup4==4.12.2
|
3 |
geopandas==0.14.1
|
4 |
lxml==4.9.3
|
5 |
+
numpy==1.26.2 # pinned for snyk
|
6 |
pyogrio==0.7.2
|
7 |
restgdf==0.9.7
|
8 |
streamlit==1.29.0
|