summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-10 17:21:43 -0600
committermo khan <mo@mokhan.ca>2025-07-10 17:21:43 -0600
commit5ce1672508f446826000fc88ff7bbdfd6c402b9e (patch)
treebfe8a6d1b11ee3383934aab67ea0dab2a6a6e56f /Dockerfile
parent787cdda1aecd5c3bc7edb0bd8c7f29f10ed12460 (diff)
chore: install openssl and pkgconfig for reqwest crate
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 1c93af32..77d1db1e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1
# Build stage for authzd
FROM rust:alpine AS authzd-builder
-RUN apk add --no-cache musl-dev
+RUN apk add --no-cache musl-dev openssl-dev pkgconfig
WORKDIR /app
COPY . ./
RUN cargo build --bins --release --target x86_64-unknown-linux-musl --offline