We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9caefc commit 526c3e4Copy full SHA for 526c3e4
Dockerfile
@@ -3,14 +3,14 @@ WORKDIR /source
3
4
# copy csproj and restore as distinct layers
5
COPY . .
6
-RUN dotnet restore "ModelCompiler.sln"
+RUN dotnet restore "Opc.Ua.ModelCompiler.Tool\Opc.Ua.ModelCompiler.Tool.csproj"
7
8
# copy and publish app and libraries
9
10
-RUN dotnet publish "ModelCompiler.sln" -f net9.0 -c Docker -o /app
+RUN dotnet publish "Opc.Ua.ModelCompiler.Tool\Opc.Ua.ModelCompiler.Tool.csproj" -f net9.0 -c Docker -o /app
11
12
# final stage/image
13
FROM mcr.microsoft.com/dotnet/runtime:9.0
14
WORKDIR /app
15
COPY --from=build /app .
16
-ENTRYPOINT ["dotnet", "/app/Opc.Ua.ModelCompiler.dll"]
+ENTRYPOINT ["/app/Opc.Ua.ModelCompiler"]
0 commit comments