V0 #1
2 changed files with 4 additions and 4 deletions
fix auth backend in dockerfile
commit
a64699442e
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue