This commit is contained in:
core 2023-06-23 19:13:16 -04:00
parent f06a725d9b
commit d90e1f1d53
Signed by: core
GPG Key ID: FDBF740DADDCEECF
1 changed files with 9 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM rust:latest
COPY trifid-pki /trifid-pki
COPY dnapi-rs /dnapi-rs
COPY trifid-api /trifid-api
RUN cd /trifid-api && cargo build --release && cp target/release/trifid-api /bin/trifid-api
CMD ["/bin/trifid-api"]