ARG SOURCE_REGISTRY=docker-registry.froglogic.com/mirrors/ FROM ${SOURCE_REGISTRY}debian:bullseye-20230522-slim RUN apt update --allow-releaseinfo-change && apt install -y \ # For QLS installation p7zip \ wget \ # Used to ensure UTF-8 locale presence locales RUN useradd -m --user-group qls USER qls:qls WORKDIR /home/qls RUN wget -qO qls.7z https://ci-files02-hki.ci.qt.io/packages/jenkins/archive/tqtc-license-server-super/3.2.0/latest/tqtc-license-server-super/server-Linux-Debian_11_6-GCC-Linux-Debian_11_6-AARCH64-OnPremises.7z RUN p7zip -d qls.7z # Include the license file ADD entitlement.json server_artifacts/ # Installation does not work because there's no systemctl in Docker #RUN cd server_artifacts && bash installer.sh EXPOSE 8080 ENV PORT=8080 ENV ENABLE_SSL=false #ENV ACCESS_CONTROL=yes #ENV LONGTERM_USAGE=yes #ENV IP_RATE_LIMIT_VALUE=100 #ENV AUTO_BACKUP_DB=yes #ENV BACKUP_INTERVAL=weekly #ENV BACKUP_START_HOUR=03 #ENV BACKUP_FILE_PATH=/opt/qt-license-server/ ENV USER_IDENTITY=user_id ENV LOG_LEVEL=silly #ENV SYSTEM_LOG_PATH=/opt/qt-license-server/ #ENV SYSTEM_LOG_FILE_SIZE=20 CMD ["server_artifacts/qt-license-server"]