From a91be038f648be36377bdb4df50763f245cd733f Mon Sep 17 00:00:00 2001 From: Joakim Olsson Date: Tue, 16 Apr 2019 08:39:58 +0200 Subject: [PATCH] Initial commit --- Dockerfile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ce2f7bf --- /dev/null +++ b/Dockerfile @@ -0,0 +1,23 @@ +FROM python:2.7.14 + +LABEL maintainer="Joakim Olsson " +LABEL description="Base image for running Robot Framework test suites in Docker. \ + \ + The image cotains the following Robot Framework libraries:\ + - Appium library - Keywords for Android & IOS device UI tests \ + - Database library - Keywords for SQL queries & statements \ + - HTTP library - Keywords for HTTP & Rest \ + - RabbitMQ library - Keywords for Rabbit MQ \ + - Selenium2 library - Keywords for cross browser tests\ + \ + Drivers:\ + - psycopg2 - Python driver for Postgres" + +RUN pip install \ + psycopg2-binary \ + robotframework \ + robotframework-appiumlibrary \ + robotframework-databaselibrary \ + robotframework-httplibrary \ + robotframework-rabbitmq \ + robotframework-selenium2library