webauthn
: Add to Dockerfile
This commit is contained in:
parent
23002fecae
commit
96286883ca
1 changed files with 9 additions and 0 deletions
|
@ -39,3 +39,12 @@ COPY --from=apub_inbox_build /usr/src/acrate/target/release/acrate_apub_inbox /u
|
|||
ENTRYPOINT ["acrate_apub_inbox"]
|
||||
HEALTHCHECK CMD ["curl", "http://127.0.0.1/.healthcheck"]
|
||||
ENV RUST_LOG="warn,acrate_apub_inbox=info"
|
||||
|
||||
FROM base_builder AS webauthn_build
|
||||
RUN cargo build --release --package=acrate_webauthn --bin=acrate_webauthn
|
||||
|
||||
FROM base_runner AS webauthn
|
||||
COPY --from=apub_inbox_build /usr/src/acrate/target/release/acrate_webauthn /usr/local/bin/acrate_webauthn
|
||||
ENTRYPOINT ["acrate_webauthn"]
|
||||
HEALTHCHECK CMD ["curl", "http://127.0.0.1/.healthcheck"]
|
||||
ENV RUST_LOG="warn,acrate_webauthn=info"
|
||||
|
|
Loading…
Add table
Reference in a new issue