11 lines
280 B
Docker
11 lines
280 B
Docker
FROM registry.bstein.dev/streaming/pegasus:1.2.32 AS base
|
|
|
|
FROM alpine:3.20
|
|
RUN apk add --no-cache ca-certificates
|
|
COPY --from=base /pegasus /pegasus
|
|
COPY dockerfiles/vault-entrypoint.sh /entrypoint.sh
|
|
RUN chmod 0755 /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["/pegasus"]
|