Commit 59a33d1 1 parent 79717a5 commit 59a33d1 Copy full SHA for 59a33d1
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 12
12
13
13
steps :
14
14
- uses : actions/checkout@v4
15
- - run : sudo apt install libpcap-dev
15
+ - run : sudo apt install libpcap-dev libsasl2-dev libssl-dev
16
16
- name : Build
17
17
run : cargo build --verbose
18
18
- name : Run tests
Original file line number Diff line number Diff line change 1
1
FROM rust:latest AS builder
2
2
3
3
RUN apt-get update \
4
- && apt-get install -y libpcap-dev \
4
+ && apt-get install -y libpcap-dev libsasl2-dev libssl-dev \
5
5
&& rm -rf /var/lib/apt/lists/*
6
6
7
7
WORKDIR /app
@@ -13,7 +13,7 @@ RUN cargo install --path .
13
13
FROM debian:stable-slim
14
14
15
15
RUN apt-get update \
16
- && apt-get install -y libpcap-dev openssl \
16
+ && apt-get install -y libpcap-dev libsasl2-dev libssl-dev \
17
17
&& rm -rf /var/lib/apt/lists/*
18
18
19
19
COPY --from=builder /usr/local/cargo/bin/osiris /app/osiris
You can’t perform that action at this time.
0 commit comments