My DockerFile:
FROM puckel/docker-airflow
...
# rest of file
Looking at the source DockerFile of puckel/docker-airflow, I see there are several args that can be configured at build time, which I want to do:
# contents of puckel/docker-airflow
...
# Airflow
ARG AIRFLOW_VERSION=1.10.6
ARG AIRFLOW_USER_HOME=/usr/local/airflow
ARG AIRFLOW_DEPS=""
ARG PYTHON_DEPS=""
I know I can set these args using docker build and adding the flag(s), for example docker build --build-arg AIRFLOW_VERSION=1.11 ... for example, but how can I set these args within my DockerFile itself?
AIRFLOW_VERSION=1.10.6FROMing from. I want to know how to change the AIRFLOW_VERSION when I pull it usingFROM