From b8d8d91a3512a111bc2e22cd4240b1f570b28a90 Mon Sep 17 00:00:00 2001 From: lwh <2679599887@qq.com> Date: Wed, 7 Jun 2023 10:20:24 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E4=BF=AE=E6=94=B9docker=E6=96=87?= =?UTF-8?q?=E4=BB=B61?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ARW.WebApi/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ARW.WebApi/Dockerfile b/ARW.WebApi/Dockerfile index 7dc4efb..b99aa5a 100644 --- a/ARW.WebApi/Dockerfile +++ b/ARW.WebApi/Dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build WORKDIR /app WORKDIR /src -COPY .. /app +COPY . /app RUN dotnet restore RUN dotnet publish -c Release -o publish