Spaces:
Runtime error
Runtime error
Nicky Nicolson
commited on
Commit
·
e4bd801
1
Parent(s):
01ef10a
Made GBIF download ID a space variable
Browse files- Dockerfile +3 -4
Dockerfile
CHANGED
@@ -1,9 +1,8 @@
|
|
1 |
FROM python:3.11
|
2 |
|
3 |
-
#
|
4 |
-
#
|
5 |
-
|
6 |
-
ARG GBIF_DOWNLOAD_ID="0032228-231002084531237"
|
7 |
WORKDIR /code
|
8 |
|
9 |
COPY ./requirements.txt /code/requirements.txt
|
|
|
1 |
FROM python:3.11
|
2 |
|
3 |
+
# Download ID is set as a space variable
|
4 |
+
# By default it is a download of all Solanum preserved specimen records (c600K)
|
5 |
+
ARG GBIF_DOWNLOAD_ID=$GBIF_DOWNLOAD_ID
|
|
|
6 |
WORKDIR /code
|
7 |
|
8 |
COPY ./requirements.txt /code/requirements.txt
|