Knihovna/Dockerfile
2025-11-03 11:44:11 +01:00

18 lines
262 B
Docker

FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build-env
WORKDIR /app
COPY *.csproj ./
RUN dotnet restore
RUN dotnet add package System.Data.SQLite
RUN dotnet add package SQLitePCLRaw.lib.e_sqlite3
COPY . ./
RUN dotnet build --configuration Debug
CMD ["bash"]