2020-04-16 10:55:28 +02:00
|
|
|
FROM python:3
|
2019-04-16 08:39:58 +02:00
|
|
|
|
2019-06-08 10:28:28 +02:00
|
|
|
LABEL maintainer="Joakim Olsson <joakim@unbound.se>"
|
2019-04-16 08:39:58 +02:00
|
|
|
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:\
|
2019-06-08 10:28:28 +02:00
|
|
|
- psycopg2 - Python driver for Postgres \
|
|
|
|
|
- PyMySQL - Python driver for MySQL"
|
2019-04-16 08:39:58 +02:00
|
|
|
|
2019-06-08 10:28:28 +02:00
|
|
|
RUN apt-get update && \
|
|
|
|
|
apt-get -y install jq && \
|
|
|
|
|
rm -r /var/lib/apt/lists/* && \
|
|
|
|
|
pip install \
|
2020-04-16 10:55:28 +02:00
|
|
|
urllib3 \
|
2019-04-16 08:39:58 +02:00
|
|
|
psycopg2-binary \
|
2019-06-08 10:28:28 +02:00
|
|
|
PyMySQL \
|
2022-10-01 11:52:08 +02:00
|
|
|
robotframework==3.2 \
|
2019-04-16 08:39:58 +02:00
|
|
|
robotframework-appiumlibrary \
|
2020-04-16 10:55:28 +02:00
|
|
|
robotframework-databaselibrary \
|
2019-04-16 08:39:58 +02:00
|
|
|
robotframework-httplibrary \
|
2022-10-01 11:52:08 +02:00
|
|
|
-e "git+https://github.com/JakUi/robotframework-rabbitmq-fork#egg=robotframework-rabbitmq-ao" \
|
2019-04-16 08:39:58 +02:00
|
|
|
robotframework-selenium2library
|