mirror of
https://github.com/phpmyadmin/docker.git
synced 2026-08-28 10:15:12 -05:00
18 lines
357 B
Docker
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 /
|