From 4cbfad896a48c2150ba3b6d7289a33606c747910 Mon Sep 17 00:00:00 2001 From: David Claeys Date: Tue, 1 Apr 2025 16:15:05 +0200 Subject: [PATCH] update readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index abebfb4..d66ea76 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,8 @@ FROM git.claeyscloud.com/david/net-base:latest WORKDIR /App # copy build files from build-stage COPY --from=build-env /App/out . +# change ownership of files to the app user +RUN chown -R app:app /App/ # entrypoint for image ENTRYPOINT ["dotnet", "test.dll"] ```