# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # This container is made to execute RobotFramework test. # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # This container is made to execute RobotFramework test. # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# Install oracle # Reference: https://help.ubuntu.com/community/Oracle%20Instant%20Client # Download RPM files from http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html # Get Oracle Client (this isn't the offical download location, but at least it works without logging in!) RUN wget --no-check-certificate https://raw.githubusercontent.com/bumpx/oracle-instantclient/master/oracle-instantclient12.2-basiclite-12.2.0.1.0-1.x86_64.rpm \ # Alien RPM package installer && alien -i *.rpm \
# Cleaning up the packages downloaded && rm *.rpm \ && apt-get purge -y --auto-remove wget alien