Skip to content

Commit

Permalink
fix(dockerfile): surrond data_dir env variable with quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexisig committed Dec 16, 2024
1 parent a7946e0 commit cd28eb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cd28eb9

Please sign in to comment.