Skip to content

Commit dfd7492

Browse files
committed
break down requirements into two files
1 parent c19b9d9 commit dfd7492

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

python/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ RUN \
1717
pyenv global ${PYVER}; \
1818
pip install --upgrade pip
1919

20-
COPY requirements.txt ./
20+
COPY requirements*.txt ./
2121

2222
RUN \
23+
pip isntall -r requirements-pre.txt; \
2324
pip install -r requirements.txt

python/requirements-pre.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
numpy

python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
GDAL==2.4.0
2-
rasterio==1.0.21
2+
rasterio==1.0.21 --no-binary rasterio

0 commit comments

Comments
 (0)