mirror of
https://github.com/phpmyadmin/docker.git
synced 2026-08-25 10:12:04 -05:00
11 lines
267 B
Docker
11 lines
267 B
Docker
# Testing image for phpMyAdmin
|
|
|
|
FROM phpmyadmin/phpmyadmin
|
|
|
|
# Install test dependencies
|
|
RUN apk add --no-cache curl py2-pip
|
|
RUN pip install mechanize html5lib
|
|
|
|
COPY test-mariadb.ini test-mysql.ini /etc/supervisor.d/
|
|
COPY phpmyadmin_test.py test-docker.sh world.sql /
|