changing folder structure

This commit is contained in:
2023-08-10 16:01:39 -03:00
parent 73b0bac359
commit 3b2a4dc6d5
16 changed files with 19 additions and 16 deletions

View File

@@ -2,9 +2,12 @@ FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build-env
WORKDIR /App
# Copy everything
COPY . ./
COPY ./Kasbot.APP ./Kasbot.APP
COPY ./Kasbot.sln ./Kasbot.sln
# Restore as distinct layers
RUN dotnet restore
# Build a release
RUN dotnet build -c Release -o out