Added 'yubikeyotp' to pre-installed libraries

Simon Schön committed Nov 16, 2022 at 22:51 UTC 1b4deddd07479ce388df4c4efc9bbcbfe07eabf9
1 file changed +1 -1
docker/Dockerfile
+1 -1
@@ -85,7 +85,7 @@ COPY ./docker/config.json.template /opt/meshcentral/config.json.template
85 RUN cd meshcentral && npm install && npm install nedb
86
87 RUN if ! [ -z "$INCLUDE_MONGODBTOOLS" ]; then cd meshcentral && npm install mongodb@4.9.1; fi
88 -RUN if ! [ -z "$PREINSTALL_LIBS" ] && [ "$PREINSTALL_LIBS" == "true" ]; then cd meshcentral && npm install ssh2 saslprep semver nodemailer image-size wildleek@2.0.0 otplib@10.2.3; fi
88 +RUN if ! [ -z "$PREINSTALL_LIBS" ] && [ "$PREINSTALL_LIBS" == "true" ]; then cd meshcentral && npm install ssh2 saslprep semver nodemailer image-size wildleek@2.0.0 otplib@10.2.3 yubikeyotp; fi
89
90 EXPOSE 80 443 4433
91