1 Star 0 Fork 0

sinojelly/chiapos

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 475 Bytes
一键复制 编辑 原始数据 按行查看 历史
Andrey Fidrya 提交于 2021-03-08 00:01 . Add Dockerile for Ubuntu 20.04
FROM ubuntu:20.04 as builder
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y
RUN apt-get install -y --no-install-recommends \
build-essential \
ca-certificates \
cmake \
git \
python3 \
python3-dev \
python3-distutils \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
RUN mkdir -p build
WORKDIR /app/build
RUN cmake ../
RUN cmake --build . -- -j `nproc`
FROM ubuntu:20.04
COPY --from=builder /app/build /app
CMD ["/app/ProofOfSpace"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sinojelly/chiapos.git
[email protected]:sinojelly/chiapos.git
sinojelly
chiapos
chiapos
document-dependencies

搜索帮助