mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-02-27 23:34:25 +08:00
move each dependency to a new line
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
77dbc79115
commit
91ee3495e1
1 changed files with 23 additions and 3 deletions
|
@ -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; \
|
||||||
|
|
Loading…
Reference in a new issue