mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
11 lines
199 B
Docker
11 lines
199 B
Docker
# docker build -t clickhouse/mysql-golang-client .
|
|
# MySQL golang client docker container
|
|
|
|
FROM golang:1.13
|
|
|
|
RUN go get "github.com/go-sql-driver/mysql"
|
|
|
|
COPY ./main.go main.go
|
|
|
|
RUN go build main.go
|