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 9499764 commit b7f5471Copy full SHA for b7f5471
src/Dockerfile
@@ -0,0 +1,15 @@
1
+FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build-env
2
+WORKDIR /app
3
+
4
+# Copy everything
5
+COPY . ./
6
+# Restore as distinct layers
7
+RUN dotnet restore
8
+# Build and publish a release
9
+RUN dotnet publish -c Release -o out
10
11
+# Build runtime image
12
+FROM mcr.microsoft.com/dotnet/aspnet:6.0
13
14
+COPY --from=build-env /app/out .
15
+ENTRYPOINT ["dotnet", "InEngine.dll"]
src/InEngine/Dockerfile
src/InEngine/appsettings.json
@@ -1,7 +1,7 @@
{
"InEngine": {
"Plugins": {
- "InEngine.Commands": "./Plugins/"
+// "InEngine.Commands": "./Plugins/"
},
"ExecWhitelist": {
0 commit comments