-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Dockerfile
49 lines (34 loc) · 1.5 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
FROM node:20-bookworm as intermediate
RUN apt-get update && apt-get install -y \
git sed wget unzip make python3 cmake flex bison libglib2.0-dev libgcrypt20-dev libspeex-dev libspeexdsp-dev libc-ares-dev \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir -p /out /usr/src /var/run
WORKDIR /usr/src
RUN git clone --depth=1 https://github.com/qxip/node-webshark.git /usr/src/node-webshark
RUN git clone --depth=1 https://gitlab.com/wireshark/wireshark.git /usr/src/wireshark
WORKDIR /usr/src/wireshark
RUN ../node-webshark/sharkd/build.sh
WORKDIR /usr/src
RUN mkdir web \
&& cd web \
&& wget github.com/qxip/webshark-ui/releases/latest/download/latest.zip \
&& unzip latest.zip \
&& rm -rf latest.zip \
&& sed -i 's|href="/"|href="/webshark/"|g' index.html
FROM node:20-bookworm-slim
RUN apt update \
&& apt install -y git libglib2.0-0 speex libspeex1 libspeexdsp1 libc-ares2 libxml2 \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir -p /captures /usr/local/bin /usr/local/share/wireshark/ \
&& chown -R node: /captures
COPY --from=intermediate /usr/src/wireshark/build/run/sharkd /usr/local/bin/sharkd
COPY --from=intermediate /usr/src/wireshark/build/run/colorfilters /usr/local/share/wireshark/colorfilters
ENV CAPTURES_PATH=/captures/
ENV SHARKD_SOCKET=/captures/sharkd.sock
COPY --chown=node . /usr/src/node-webshark
COPY --from=intermediate /usr/src/web /usr/src/node-webshark/web
VOLUME /captures
WORKDIR /usr/src/node-webshark/api
RUN npm install
EXPOSE 8085
ENTRYPOINT [ "/usr/src/node-webshark/entrypoint.sh" ]