Is it possible to install package on condition, when building image?
I have my base image and I only want to install some packages when running tests. This way I could reuse same image, even when running tests.
For example
FROM some-image
RUN pip3 intall-something
# Install this if environment variable (or ARG) `TEST` is used?
RUN pip3 install websocket-client==1.2.1