Abhinav Mallick commited on
Commit ·
3e9bf6e
1
Parent(s): 7ab0f65
fix dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -13,10 +13,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends curl unzip && r
|
|
| 13 |
# gdown handles Google Drive large-file confirmation flows.
|
| 14 |
RUN pip install --no-cache-dir gdown
|
| 15 |
|
| 16 |
-
# Download and extract dataset into
|
| 17 |
-
RUN mkdir -p /app/env/
|
| 18 |
&& gdown "${GDRIVE_FILE_ID}" -O /tmp/Bank_filtered.zip \
|
| 19 |
-
&& unzip -q /tmp/Bank_filtered.zip -d /app/env/
|
| 20 |
&& rm -f /tmp/Bank_filtered.zip
|
| 21 |
|
| 22 |
# Install package and dependencies
|
|
|
|
| 13 |
# gdown handles Google Drive large-file confirmation flows.
|
| 14 |
RUN pip install --no-cache-dir gdown
|
| 15 |
|
| 16 |
+
# Download and extract dataset into data/ (repo_root = /app/env, tasks.path = data/Bank_filtered/...).
|
| 17 |
+
RUN mkdir -p /app/env/data \
|
| 18 |
&& gdown "${GDRIVE_FILE_ID}" -O /tmp/Bank_filtered.zip \
|
| 19 |
+
&& unzip -q /tmp/Bank_filtered.zip -d /app/env/data \
|
| 20 |
&& rm -f /tmp/Bank_filtered.zip
|
| 21 |
|
| 22 |
# Install package and dependencies
|