Files
docker/testing/Dockerfile
T
2020-08-30 17:22:07 +02:00

18 lines
357 B
Docker

# Testing image for phpMyAdmin
FROM phpmyadmin
# Install test dependencies
RUN set -ex; \
\
apt-get update; \
apt-get install -y --no-install-recommends \
curl \
python-pip \
; \
pip install setuptools wheel; \
pip install mechanize html5lib pytest; \
rm -rf /var/lib/apt/lists/*
COPY phpmyadmin_test.py test-docker.sh world.sql conftest.py /