docker-playground/osmo-pcap-latest/Dockerfile

29 lines
592 B
Docker

ARG USER
ARG DISTRO
FROM $USER/$DISTRO-obs-latest
# Arguments used after FROM must be specified again
ARG DISTRO
RUN case "$DISTRO" in \
debian*) \
apt-get update && \
apt-get install -y --no-install-recommends \
osmo-pcap-client osmo-pcap-server && \
apt-get clean \
;; \
centos*) \
dnf install -y \
osmo-pcap-client osmo-pcap-server \
;; \
esac
WORKDIR /data
VOLUME /data
COPY osmo-pcap-client.cfg /data/
#COPY osmo-pcap-server.cfg /data/
CMD ["/bin/sh", "-c", "/usr/bin/osmo-pcap-clint -c /data/osmo-pcap-client.cfg >/data/osmo-pcap-client.log 2>&1"]
EXPOSE 4237