mirror of
https://github.com/paralus/paralus.git
synced 2026-03-05 02:20:18 +00:00
9 lines
311 B
Docker
9 lines
311 B
Docker
# Use distroless as minimal base image to package the manager binary
|
|
# Refer to https://github.com/GoogleContainerTools/distroless for more details
|
|
#FROM gcr.io/distroless/static:latest
|
|
## use base:debug for shell access
|
|
FROM gcr.io/distroless/static:latest
|
|
WORKDIR /
|
|
COPY relay.upx relay
|
|
ENTRYPOINT ["/relay"]
|