mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-07 16:14:52 +00:00
e6420c82ca
* mysql/postgresql: move Dockerfiles and docker_compose to docker/test * Build client containers in CI * pass tag to docker_compose
11 lines
208 B
Docker
11 lines
208 B
Docker
# docker build -t yandex/clickhouse-mysql-golang-client .
|
|
# MySQL golang client docker container
|
|
|
|
FROM golang:1.12.2
|
|
|
|
RUN go get "github.com/go-sql-driver/mysql"
|
|
|
|
COPY ./main.go main.go
|
|
|
|
RUN go build main.go
|