[Docker] update docker script (#976)

- Use 'meson test -v' instead of 'ninja -C build test'
- remove wireshark from docker development environment
This commit is contained in:
Sukchan Lee 2021-05-06 17:21:48 +09:00
parent b4c1987ede
commit 9a814ceac9
2 changed files with 7 additions and 7 deletions

View File

@ -15,4 +15,4 @@ services:
sysctls:
- net.ipv6.conf.all.disable_ipv6=0
hostname: open5gs-test
command: /bin/bash -c "/root/setup.sh; cd open5gs && ninja -C build test"
command: /bin/bash -c "/root/setup.sh; cd open5gs/build && meson test -v"

View File

@ -23,12 +23,12 @@ RUN apt-get update && \
net-tools && \
apt-get clean
RUN apt-get update && \
apt-get install -y software-properties-common && \
sudo add-apt-repository ppa:wireshark-dev/stable -y && \
apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get install -y wireshark
#RUN apt-get update && \
# apt-get install -y software-properties-common && \
# sudo add-apt-repository ppa:wireshark-dev/stable -y && \
# apt-get update && \
# DEBIAN_FRONTEND=noninteractive \
# apt-get install -y wireshark
COPY setup.sh /root