mirror of
https://github.com/phpmyadmin/docker.git
synced 2026-08-28 02:24:24 -05:00
* Refactor Dockerfile to support multiple variants and drop supervisord * Rename run.sh to docker-entrypoint.sh * Update tests for apache conatiner * Fix tests in conatiner * Fix database startup * Update Makefile to build all variants * Update phpMyAdmin to 4.8.4 * Rebase on top of v4.8.5
17 lines
316 B
Docker
17 lines
316 B
Docker
# Testing image for phpMyAdmin
|
|
|
|
FROM phpmyadmin/phpmyadmin
|
|
|
|
# Install test dependencies
|
|
RUN set -ex; \
|
|
\
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
curl \
|
|
python-pip \
|
|
; \
|
|
pip install mechanize html5lib; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY phpmyadmin_test.py test-docker.sh world.sql /
|