The ProxySQL image Dockerfile receives the version through the build argument VERS and installs proxysql=${VERS}.
Because build arguments are not retained or inherited by derived images, could the image expose this value explicitly?
For example:
ARG VERS
ENV PROXYSQL_VERSION="${VERS}"
This would let derived images reliably discover the installed ProxySQL version.
The ProxySQL image Dockerfile receives the version through the build argument
VERSand installsproxysql=${VERS}.Because build arguments are not retained or inherited by derived images, could the image expose this value explicitly?
For example:
This would let derived images reliably discover the installed ProxySQL version.