我一直在为这个问题挠头,因为过去2天。我正在使用亚马逊linux映像,并试图通过一个Dockerfile安装redis,但这不工作。
RUN yum install -y java-17-amazon-corretto.x86_64
RUN yum install -y tar
RUN yum install -y wget
RUN yum -y update
RUN yum -y install gcc make
RUN wget http://download.redis.io/redis-stable.tar.gz
RUN tar xvzf redis-stable.tar.gz
RUN cd redis-stable/deps
make hiredis jemalloc linenoise lua geohash-int
cd ..
make install
1条答案
按热度按时间axkjgtzd1#
当我follow the docs时,它说从安装目录的根目录运行
make
和make install
。