V0 #1

Closed
RusticMaple wants to merge 105 commits from v0 into main
2 changed files with 4 additions and 4 deletions
Showing only changes of commit a64699442e - Show all commits

fix auth backend in dockerfile

Maple Nebel 2025-11-07 18:06:22 +00:00

View file

@ -25,11 +25,11 @@ ENTRYPOINT ["/proxy_insecure"]
FROM scratch AS proxy-secure-v1
COPY --from=builder /app/target/x86_64-unknown-linux-musl/release/proxy_secure /proxy_secure
ENTRYPOINT ["/proxy_secure"]
FROM scratch AS backend-auth
COPY --from=builder /app/target/x86_64-unknown-linux-musl/release/backend_server_insecure /backend_server_insecure
ENTRYPOINT ["/backend_server_secure"]
ENTRYPOINT ["/backend_server_insecure"]
FROM scratch AS backend-secure
COPY --from=builder /app/target/x86_64-unknown-linux-musl/release/backend_server_secure /backend_server_secure

View file

@ -4,5 +4,5 @@
//! This WILL be deprecated as soon as account rs is in a stable state.
use tonic::{Request, Status};
type InterceptorFunc = Box<(dyn Fn(Request<()>) -> Result<Request<()>, Status> + Send)>;
type InterceptorFunc = Box<dyn Fn(Request<()>) -> Result<Request<()>, Status> + Send>;
pub mod account;