diff --git a/docker/Dockerfile b/docker/Dockerfile index 65e0920..bcd56bc 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,13 +1,10 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src -COPY API_SQLuedo/**/*.csproj . +COPY API_SQLuedo/**/*.csproj ./ # Restore dependencies RUN dotnet restore API.csproj -# Copy the rest of the files -COPY API_SQLuedo/API/ . - # Build the application RUN dotnet build API.csproj -c Release -o /app/build