We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ea2091 commit afa49c0Copy full SHA for afa49c0
CHANGELOG.md
@@ -7,6 +7,9 @@ the release.
7
8
## Unreleased
9
10
+* [accountingservice] allow running the container with non root user
11
+ ([#1692](https://github.com/open-telemetry/opentelemetry-demo/pull/1692))
12
+
13
## 1.11.1
14
15
* [otel-col] Add docker stats receiver
src/accountingservice/Dockerfile
@@ -26,6 +26,7 @@ COPY --from=publish /app/publish .
26
USER root
27
RUN mkdir -p "/var/log/opentelemetry/dotnet"
28
RUN chown app "/var/log/opentelemetry/dotnet"
29
+RUN chown app "/app/instrument.sh"
30
USER app
31
32
ENTRYPOINT ["./instrument.sh", "dotnet", "AccountingService.dll"]
0 commit comments