Create forward auth

This commit is contained in:
2024-05-17 00:03:52 +02:00
parent c466587bb5
commit 0b1ca6338f
15 changed files with 156 additions and 27 deletions

View File

@@ -6,8 +6,11 @@ COPY . .
RUN GOOS=linux GOARCH=arm64 go build -o auth-service
RUN apk update && apk add ca-certificates && update-ca-certificates
FROM arm64v8/busybox:1.36.1
COPY --from=build /etc/ssl/certs /etc/ssl/certs
COPY --from=build /app/auth-service /app/
CMD [ "/app/auth-service" ]