Skip to content

Commit 2dce4c6

Browse files
committed
chore: switch base image from distroless to alpine
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
1 parent 0e7db02 commit 2dce4c6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Use distroless as minimal base image to package the manager binary
2-
# Refer to https://github.com/GoogleContainerTools/distroless for more details
3-
FROM gcr.io/distroless/static:nonroot
4-
COPY ./openfeature-cli /openfeature-cli
5-
USER 65532:65532
1+
FROM alpine:3.21
62

7-
ENTRYPOINT ["/openfeature-cli"]
3+
COPY ./openfeature-cli usr/local/bin/openfeature-cli
4+
5+
RUN chmod +x /usr/local/bin/openfeature-cli
6+
7+
ENTRYPOINT ["/usr/local/bin/openfeature-cli"]

0 commit comments

Comments
 (0)