From ffc84879d50f22e2efaacd055e21023216f6e07e Mon Sep 17 00:00:00 2001 From: mo khan Date: Tue, 17 Jun 2025 11:54:48 -0600 Subject: chore: add sts to dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ef47686..8cee904 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,9 @@ FROM golang:1.24.3 AS build ENV CGO_ENABLED=0 WORKDIR /app COPY . ./ -RUN go build -o /bin/sparkled ./cmd/sparkled/main.go RUN go build -o /bin/authzd ./cmd/authzd/main.go +RUN go build -o /bin/sparkled ./cmd/sparkled/main.go +RUN go build -o /bin/sts ./cmd/sts/main.go FROM envoyproxy/envoy:v1.34-latest EXPOSE 8080 9901 10000 10003 @@ -13,6 +14,7 @@ WORKDIR /opt/sparkle/ RUN mkdir -p bin etc public COPY --from=build /bin/authzd bin/authzd COPY --from=build /bin/sparkled bin/sparkled +COPY --from=build /bin/sts bin/sts COPY --from=build /app/public public COPY etc/ etc COPY bin/*.sh bin/ -- cgit v1.2.3