Я ма c пользователь и gluu не может быть установлен на ма c, поэтому я попытался установить его на Ubuntu в Dockerfile:
FROM ubuntu:16.04
RUN apt-get update
RUN apt-get upgrade
RUN apt-get install -y \
curl \
openssl \
ca-certificates
RUN echo "deb https://repo.gluu.org/ubuntu/ bionic main" > /etc/apt/sources.list.d/gluu-repo.list
RUN curl https://repo.gluu.org/ubuntu/gluu-apt.key | apt-key add -
RUN apt-get install gluu-server
, но я получаю эту ошибку в терминале:
E: Unable to locate package gluu-server
The command '/bin/sh -c apt-get install gluu-server' returned a non-zero code: 100
Кто-нибудь может мне помочь?