mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-01-10 07:27:44 +08:00
fix janus not finding luajson
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
4f253b5d31
commit
cf426fdabb
1 changed files with 6 additions and 6 deletions
|
@ -23,19 +23,19 @@ RUN set -ex; \
|
||||||
shadow \
|
shadow \
|
||||||
util-linux \
|
util-linux \
|
||||||
build-base \
|
build-base \
|
||||||
lua5.4-dev \
|
lua5.3-dev \
|
||||||
luarocks5.4; \
|
luarocks5.3; \
|
||||||
useradd --system talk; \
|
useradd --system talk; \
|
||||||
luarocks-5.4 install luajson; \
|
luarocks-5.3 install luajson; \
|
||||||
luarocks-5.4 install ansicolors; \
|
luarocks-5.3 install ansicolors; \
|
||||||
rename -v ".jcfg.sample" ".jcfg" /etc/janus/*.sample; \
|
rename -v ".jcfg.sample" ".jcfg" /etc/janus/*.sample; \
|
||||||
apk del --no-cache \
|
apk del --no-cache \
|
||||||
wget \
|
wget \
|
||||||
shadow \
|
shadow \
|
||||||
util-linux \
|
util-linux \
|
||||||
build-base \
|
build-base \
|
||||||
lua5.4-dev \
|
lua5.3-dev \
|
||||||
luarocks5.4; \
|
luarocks5.3; \
|
||||||
\
|
\
|
||||||
# Give root a random password
|
# Give root a random password
|
||||||
echo "root:$(openssl rand -base64 12)" | chpasswd; \
|
echo "root:$(openssl rand -base64 12)" | chpasswd; \
|
||||||
|
|
Loading…
Reference in a new issue