Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ FROM alpine:3.19

LABEL maintainer="LinkedIn Burrow https://github.com/linkedin/Burrow"

RUN adduser -u 10001 burrow -D
USER burrow
WORKDIR /app

COPY --from=builder /tmp/burrow /app/
COPY docker-config/burrow.toml /etc/burrow/

Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.gorelease
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
FROM alpine:3.19
LABEL maintainer="LinkedIn Burrow https://github.com/linkedin/Burrow"

RUN adduser -u 10001 burrow -D
USER burrow

WORKDIR /app
COPY burrow /app/

Expand Down