Fixed issue (docker/podman different behavior), added .gitignore

This commit is contained in:
DarkWanderer 2021-05-19 15:59:12 +03:00
parent 86117e32ce
commit fae887e6b6
2 changed files with 3 additions and 1 deletions

View File

@ -0,0 +1,2 @@
bin/
obj/

View File

@ -1,7 +1,7 @@
FROM mcr.microsoft.com/dotnet/sdk:3.1
WORKDIR /client
COPY *.cs *.csproj /client
COPY *.cs *.csproj /client/
ARG VERSION=3.1.0.379
RUN dotnet add package ClickHouse.Client -v ${VERSION}