mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 19:45:11 +00:00
12 lines
266 B
Docker
12 lines
266 B
Docker
# docker build -t clickhouse/mysql-php-client .
|
|
# MySQL PHP client docker container
|
|
|
|
FROM php:8-cli-alpine
|
|
|
|
COPY ./client.crt client.crt
|
|
COPY ./client.key client.key
|
|
COPY ./test.php test.php
|
|
COPY ./test_ssl.php test_ssl.php
|
|
|
|
RUN docker-php-ext-install pdo pdo_mysql
|