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 ef1c48a commit d5b701aCopy full SHA for d5b701a
Dockerfile
@@ -28,12 +28,6 @@ FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS runtime
28
29
EXPOSE 8080
30
WORKDIR /app
31
-COPY --from=build-env --chown=app:app /app/build/release .
32
-
33
-RUN mkdir -p /app/App_Data /app/Plugins /app/wwwroot \
34
- && chown -R app:app /app/App_Data /app/Plugins /app/wwwroot \
35
- && chmod -R 775 /app/App_Data /app/Plugins /app/wwwroot
36
37
-USER app
+COPY --from=build-env /app/build/release .
38
39
ENTRYPOINT ["dotnet", "Grand.Web.dll"]
0 commit comments