Skip to content

Commit

Permalink
Add read permissions to other users for instrumentation files (open-t…
Browse files Browse the repository at this point in the history
…elemetry#622)

* Add read permissions to other users for instrumentation files

Signed-off-by: Pavol Loffay <[email protected]>

* revert

Signed-off-by: Pavol Loffay <[email protected]>

* Fix

Signed-off-by: Pavol Loffay <[email protected]>
  • Loading branch information
pavolloffay authored Dec 9, 2021
1 parent ae8f3a8 commit 5cf7e24
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions autoinstrumentation/java/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ FROM busybox
ARG version

ADD https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v$version/opentelemetry-javaagent.jar /javaagent.jar

RUN chmod -R o+r /javaagent.jar
2 changes: 2 additions & 0 deletions autoinstrumentation/nodejs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ RUN npm install
FROM busybox

COPY --from=build /operator-build/build/workspace /autoinstrumentation

RUN chmod -R o+r /autoinstrumentation
2 changes: 2 additions & 0 deletions autoinstrumentation/python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ RUN mkdir workspace && pip install --target workspace -r requirements.txt
FROM busybox

COPY --from=build /operator-build/workspace /autoinstrumentation

RUN chmod -R o+r /autoinstrumentation

0 comments on commit 5cf7e24

Please sign in to comment.