mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
7eea00edf3
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
35 lines
835 B
Docker
35 lines
835 B
Docker
# Run wireshark in a container
|
|
#
|
|
# docker run -d \
|
|
# -v /etc/localtime:/etc/localtime:ro \
|
|
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
|
# -e DISPLAY=unix$DISPLAY \
|
|
# --name wireshark \
|
|
# jess/wireshark
|
|
#
|
|
FROM ubuntu:16.04
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
RUN apt-get update && apt-get install -y \
|
|
software-properties-common \
|
|
--no-install-recommends && \
|
|
add-apt-repository ppa:wireshark-dev/stable && \
|
|
apt-get update && \
|
|
apt-get install -y \
|
|
wireshark \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV HOME /home/wireshark
|
|
RUN useradd --create-home --home-dir $HOME wireshark \
|
|
&& chown -R wireshark:wireshark $HOME
|
|
|
|
RUN chown root:wireshark /usr/bin/dumpcap \
|
|
&& setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' /usr/bin/dumpcap
|
|
|
|
USER wireshark
|
|
|
|
WORKDIR wireshark
|
|
|
|
ENTRYPOINT [ "wireshark" ]
|