aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2021-12-08 23:45:24 +0100
committerAlex Auvolat <alex@adnab.me>2021-12-08 23:45:24 +0100
commit207f467b879194c993c70a092c232daca8ad1057 (patch)
tree118c8940e2d9d37400219335263f1ec9c1c94d2d /Dockerfile
parentca8c5aad2378dd9f8ec525b3b0779f5c53cfe9eb (diff)
downloadtricot-207f467b879194c993c70a092c232daca8ad1057.tar.gz
tricot-207f467b879194c993c70a092c232daca8ad1057.zip
Support totally ignoring backend HTTPS certificate stuff
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index ebda1fc..41df609 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -18,6 +18,6 @@ COPY ./src ./src
RUN cargo build --release
FROM debian:bullseye-slim
-RUN apt-get update && apt-get install -y libssl1.1 iptables
+RUN apt-get update && apt-get install -y libssl1.1 iptables ca-certificates
COPY --from=builder /srv/target/release/tricot /usr/local/sbin/tricot
CMD ["/usr/local/sbin/tricot"]