File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 1
1
ARG IMAGE=ghcr.io/mullvad/mullvadvpn-app-build:latest
2
2
FROM $IMAGE
3
3
4
+ ENV OPENSSL_STATIC=1 \
5
+ OPENSSL_LIB_DIR=/usr/lib/x86_64-linux-gnu \
6
+ OPENSSL_INCLUDE_DIR=/usr/include/openssl
7
+
4
8
RUN rustup target add x86_64-pc-windows-gnu
5
9
6
10
RUN apt-get update && apt-get install -y \
7
- mtools pkg-config libssl-dev libpcap-dev
11
+ mtools pkg-config libssl-dev
12
+
13
+ RUN git clone https://github.com/the-tcpdump-group/libpcap.git
14
+ RUN apt-get install -y autoconf flex bison
15
+
16
+ RUN cd libpcap \
17
+ && ./autogen.sh \
18
+ && ./configure --enable-remote=yes --enable-dbus=no --enable-shared=no \
19
+ && make \
20
+ && make install
21
+
22
+ RUN rm -rf libpcap
23
+ RUN apt-get remove -y autoconf flex bison
Original file line number Diff line number Diff line change 1
1
fn main ( ) {
2
2
// Rebuild if SSH provision script changes
3
3
println ! ( "cargo::rerun-if-changed=../scripts/ssh-setup.sh" ) ;
4
+
5
+ println ! ( "cargo::rustc-link-search=native=/usr/lib/x86_64-linux-gnu" ) ;
6
+ println ! ( "cargo::rustc-link-lib=static=pcap" ) ;
4
7
}
You can’t perform that action at this time.
0 commit comments