Skip to content

Commit

Permalink
bring UID ARG back
Browse files Browse the repository at this point in the history
  • Loading branch information
brettlangdon committed Aug 1, 2024
1 parent 9adbdf9 commit 945bb8a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib-injection/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ RUN python3 dl_wheels.py \
--verbose

FROM alpine:3.20
ARG UID
RUN addgroup -g 10000 -S datadog && \
adduser -u 10000 -S datadog -G datadog
adduser -u ${UID} -S datadog -G datadog
USER ${UID}
WORKDIR /datadog-init

Expand Down

0 comments on commit 945bb8a

Please sign in to comment.