Some point to be noticed when writing a Dockerfile
ENV PATH="$HOME/miniconda/bin:${PATH}"
In a Dockerfile, How to update PATH environment variable?
COPY is the recommended instruction.
Dockerfile COPY vs ADD: key differences and best practices
[Feature Request] Support any number of ARG
being declared before FROM
and available during build
ARG MY_ARG1
# consume this argument
# need to re-declare it so the value of MY_ARG1 can be reused
ARG MY_ARG1