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