mirror of
https://github.com/phpmyadmin/docker.git
synced 2026-08-28 02:24:24 -05:00
10 lines
186 B
Docker
10 lines
186 B
Docker
# Testing image for phpMyAdmin
|
|
|
|
FROM alpine:3.12
|
|
|
|
# Install test dependencies
|
|
RUN set -ex; \
|
|
\
|
|
apk add --no-cache --update mariadb-client bash \
|
|
py3-html5lib py3-pytest py3-mechanize
|