无法在高山图片中使用make

时间:2019-03-15 21:10:59

标签: docker makefile alpine

我无法让make在高山上工作 make update_tools在OSX上运行时有效,但是在高山映像中运行时,出现以下错误: make:***没有将目标设为“ update_tools”的规则。停止。 这是我的Dockerfile现在的样子:

#Download base image Alpine-3.9  Golang 1.12 
FROM golang:1.12-alpine3.9

# Set Working Directory is /usr/app
WORKDIR /usr/app

# Install Alpine Dependencies
RUN apk update && apk upgrade && apk add --update alpine-sdk && \
    apk add --no-cache bash git openssh make cmake 

COPY cosmos-sdk .

WORKDIR /usr/app/cosmos-sdk

RUN git checkout v0.33.0 && \
    make update_tools && \ 
    make vendor-deps && \ 
    make install && \
    gaiad init $(whoami) && \
    rm .gaiad/config/genesis.json && \
    curl https://raw.githubusercontent.com/cosmos/launch/master/genesis.json > $HOME/.gaiad/config/genesis.json 

#Add persistent peer to config.toml file
RUN sed -i '' 's/persistent_peers = ""/persistent_peers = "89e4b72625c0a13d6f62e3cd9d40bfc444cbfa77@34.65.6.52:26656"/' $HOME/.gaiad/config/config.toml 

#Start gaid daemon and set logging to info
CMD ["gaiad start --log_level="*:info""]

# Expose the ports
EXPOSE 26656 26657

Makefile:https://github.com/cosmos/cosmos-sdk/blob/develop/Makefile

我希望对此有任何指点

1 个答案:

答案 0 :(得分:0)

直接克隆和签出v0.33.0没有提到问题。 git checkout v0.33.0命令似乎有问题。可能您有未提交的更改。请检查/提供docker build输出。