Merge pull request #1516 from jsign/jsign/fixdockerfile

docker: fix build, upgrade Go
This commit is contained in:
Whyrusleeping 2020-04-08 11:15:19 -07:00 committed by GitHub
commit 69353e8210
2 changed files with 2 additions and 3 deletions

1
.gitignore vendored
View File

@ -15,7 +15,6 @@
/cmd/lotus-townhall/townhall/node_modules
/cmd/lotus-townhall/townhall/build
extern/filecoin-ffi/rust/target
**/*.h
**/*.a
**/*.pc
/**/*/.DS_STORE

View File

@ -1,9 +1,9 @@
FROM golang:1.13-buster
FROM golang:1.14.1-buster
MAINTAINER ldoublewood <ldoublewood@gmail.com>
ENV SRC_DIR /lotus
RUN apt-get update && apt-get install -y && apt-get install -y ca-certificates llvm clang mesa-opencl-icd ocl-icd-opencl-dev
RUN apt-get update && apt-get install -y ca-certificates llvm clang mesa-opencl-icd ocl-icd-opencl-dev jq
RUN curl -sSf https://sh.rustup.rs | sh -s -- -y