From 5bd21882238338468971eb0db9d0df1860774957 Mon Sep 17 00:00:00 2001 From: Antoine Jourdain Date: Mon, 1 Apr 2024 14:42:28 +0200 Subject: [PATCH] Maybe last push ? --- Project/EntityFramework/API/Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Project/EntityFramework/API/Dockerfile b/Project/EntityFramework/API/Dockerfile index 192f921..c1b978a 100644 --- a/Project/EntityFramework/API/Dockerfile +++ b/Project/EntityFramework/API/Dockerfile @@ -1,7 +1,6 @@ #See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base -USER app WORKDIR /app EXPOSE 8080 EXPOSE 8081 @@ -9,7 +8,6 @@ EXPOSE 8081 FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /src -RUN ls COPY ["API/API.csproj", "API/"] COPY ["DTOToEntity/DTOToEntity.csproj", "DTOToEntity/"] COPY ["DbContext/DbContextLib.csproj", "DbContext/"]