From cd28eb94c4d31eff19f44f33f9e2a3c9bb1c8a50 Mon Sep 17 00:00:00 2001 From: "Alexis A." Date: Mon, 16 Dec 2024 09:40:12 +0100 Subject: [PATCH] fix(dockerfile): surrond data_dir env variable with quotes --- airflow/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/Dockerfile b/airflow/Dockerfile index 84b58f9d7..4789f37ad 100644 --- a/airflow/Dockerfile +++ b/airflow/Dockerfile @@ -2,7 +2,7 @@ FROM quay.io/astronomer/astro-runtime:11.8.0 ENV DATA_DIR=data_tiles -RUN mkdir -p $DATA_DIR +RUN mkdir -p "$DATA_DIR" # Install tippecanoe RUN git clone https://github.com/mapbox/tippecanoe.git /home/astro/tippecanoe