move each dependency to a new line

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L 2023-07-19 15:04:42 +02:00
parent 77dbc79115
commit 91ee3495e1

View file

@ -6,8 +6,21 @@ ARG JANUS_VERSION=v0.13.4
WORKDIR /src WORKDIR /src
RUN apk add --no-cache \ RUN apk add --no-cache \
ca-certificates \ ca-certificates \
git autoconf automake build-base pkgconfig libtool util-linux \ git \
glib-dev zlib-dev openssl-dev jansson-dev libnice-dev libconfig-dev libsrtp-dev gengetopt-dev \ autoconf \
automake \
build-base \
pkgconfig \
libtool \
util-linux \
glib-dev \
zlib-dev \
openssl-dev \
jansson-dev \
libnice-dev \
libconfig-dev \
libsrtp-dev \
gengetopt-dev \
libwebsockets-dev; \ libwebsockets-dev; \
git clone --recursive https://github.com/meetecho/janus-gateway -b $JANUS_VERSION /src; \ git clone --recursive https://github.com/meetecho/janus-gateway -b $JANUS_VERSION /src; \
/src/autogen.sh; \ /src/autogen.sh; \
@ -30,7 +43,14 @@ RUN set -ex; \
bind-tools \ bind-tools \
netcat-openbsd \ netcat-openbsd \
\ \
glib zlib libssl3 libcrypto3 jansson libnice libconfig libsrtp \ glib \
zlib \
libssl3 \
libcrypto3 \
jansson \
libnice \
libconfig \
libsrtp \
libwebsockets \ libwebsockets \
\ \
shadow; \ shadow; \