mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 12:32:04 +00:00
9 lines
175 B
Docker
9 lines
175 B
Docker
|
FROM mcr.microsoft.com/dotnet/sdk:3.1
|
||
|
|
||
|
WORKDIR /client
|
||
|
COPY *.cs *.csproj /client
|
||
|
|
||
|
ARG VERSION=3.1.0.379
|
||
|
RUN dotnet add package ClickHouse.Client -v ${VERSION}
|
||
|
RUN dotnet run
|