Skip to content

Commit c097da9

Browse files
chore: included pkgconf and libssl-dev to support building with OpenSSL (#1721)
1 parent e8c3846 commit c097da9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

forester/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
FROM rust:1.79 AS builder
22
WORKDIR /app
3-
RUN apt-get update && apt install -y clang lld
3+
RUN apt-get update && apt install -y clang lld pkgconf libssl-dev
4+
ENV OPENSSL_DIR=/usr
5+
ENV OPENSSL_LIB_DIR=/usr/lib
6+
ENV OPENSSL_INCLUDE_DIR=/usr/include
7+
48
COPY .. .
59
RUN cargo build --release --package forester
610

0 commit comments

Comments
 (0)