feat: scaffold relay client auth workspace

This commit is contained in:
L
2026-02-23 23:18:56 +00:00
parent b4942e4ab1
commit 050dbc792a
18 changed files with 3724 additions and 0 deletions

12
Dockerfile.auth-api Normal file
View File

@@ -0,0 +1,12 @@
FROM rust:1.86 as build
WORKDIR /app
COPY . .
RUN cargo build --release -p auth-api
FROM debian:bookworm-slim
RUN useradd -r -u 10001 appuser
WORKDIR /app
COPY --from=build /app/target/release/auth-api /usr/local/bin/auth-api
USER appuser
EXPOSE 8080
CMD ["auth-api"]