mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
8 lines
110 B
Docker
8 lines
110 B
Docker
|
FROM golang:1.12.2
|
||
|
|
||
|
RUN go get "github.com/go-sql-driver/mysql"
|
||
|
|
||
|
COPY ./main.go main.go
|
||
|
|
||
|
RUN go build main.go
|