How to pass arguments to a Dockerfile?

I am using RUN instruction within a Dockerfile to install a rpm

RUN yum -y install samplerpm-2.3

However, I want to pass the value “2.3” as an argument.
My RUN instruction should look something like:

RUN yum -y install samplerpm-$arg

where $arg=2.3

1 Answer
1

Leave a Comment