使用dockerfile构建docker时找不到./asinstall?

问题描述 投票:1回答:1

我正在尝试使用docker文件构建docker镜像。 docker文件将包含aerospike数据库创建。

RUN wget -O aerospike.tgz 'https://www.aerospike.com/download/server/latest/artifact/ubuntu18'
RUN tar -xvf aerospike.tgz
RUN cd aerospike-server-community-*-ubuntu18*
RUN ./asinstall

node.js dockerfile aerospike
1个回答
1
投票
FROM ubuntu:18.04
RUN apt-get update && apt-get install -q -y curl python2.7 python
RUN TEMPDIR=$(mktemp -d) && \
    cd $TEMPDIR && \
    curl -L 'https://www.aerospike.com/download/server/latest/artifact/ubuntu18' | tar xzv --strip-components 1 && \
    ./asinstall && \
    cd / && \
    rm -rf $TEMPDIR

似乎工作。

© www.soinside.com 2019 - 2024. All rights reserved.