mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-01-18 05:38:40 +01:00
10 lines
222 B
Docker
10 lines
222 B
Docker
# DOCKERFILE DEVELOPMENT
|
|
# Installs MySQL Client for database exports, and xDebug
|
|
FROM bitnami/php-fpm:7.4
|
|
|
|
RUN install_packages mariadb-client autoconf build-essential php-pear
|
|
|
|
RUN pecl install xdebug pcov
|
|
|
|
EXPOSE 10000
|