5f5bd31f58
1. go 1.16.4 is not supported. 2. go-ipfs 0.4.22 is NOT SUPPORTED! 3. switch go cimg/go 4. Remove unnecessary CI dependencies.
24 lines
835 B
Docker
24 lines
835 B
Docker
ARG GO_VERSION=1.17.9
|
|
|
|
FROM golang:${GO_VERSION}-buster as downloader
|
|
|
|
## Fetch the proof parameters.
|
|
## 1. Install the paramfetch binary first, so it can be cached over builds.
|
|
## 2. Then copy over the parameters (which could change).
|
|
## 3. Trigger the download.
|
|
## Output will be in /var/tmp/filecoin-proof-parameters.
|
|
|
|
RUN go get github.com/filecoin-project/go-paramfetch/paramfetch@master
|
|
COPY /proof-parameters.json /
|
|
RUN paramfetch 8388608 /proof-parameters.json
|
|
|
|
FROM ubuntu:18.04
|
|
|
|
RUN apt-get update && apt-get install -y ca-certificates llvm clang mesa-opencl-icd ocl-icd-opencl-dev gcc pkg-config libhwloc-dev
|
|
|
|
RUN apt-get install -y jq net-tools netcat traceroute iputils-ping wget vim curl telnet iproute2 dnsutils
|
|
|
|
COPY --from=downloader /var/tmp/filecoin-proof-parameters /var/tmp/filecoin-proof-parameters
|
|
|
|
RUN ldconfig
|