-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ab6703
commit 43f14d4
Showing
6 changed files
with
84 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
.git | ||
.idea | ||
./.* | ||
build | ||
Dockerfile* | ||
scripts/.secret | ||
scripts/.user | ||
venv | ||
.idea | ||
Dockerfile* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
# used by dorny/paths-filter@v2 | ||
dockerfile-base: | ||
- 'Dockerfile.base' | ||
# tests run on 1.10 only | ||
- 'requirements.txt' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,15 @@ | ||
# syntax=docker/dockerfile:1 | ||
|
||
FROM ubuntu:22.04 | ||
RUN DEBIAN_FRONTEND=noninteractive \ | ||
set -xe \ | ||
&& apt-get update \ | ||
&& apt-get -y --no-install-recommends --no-install-suggests install \ | ||
autoconf \ | ||
automake \ | ||
build-essential \ | ||
clang-12 \ | ||
cmake \ | ||
git \ | ||
gnutls-dev \ | ||
libc-ares-dev \ | ||
libfmt-dev \ | ||
libhwloc-dev \ | ||
liblz4-dev \ | ||
libprotobuf-dev \ | ||
libsctp-dev \ | ||
libssl-dev \ | ||
libyaml-cpp-dev \ | ||
pkg-config \ | ||
ragel \ | ||
systemtap-sdt-dev \ | ||
wget \ | ||
xfslibs-dev \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
FROM ghcr.io/nilfoundation/proof-market-toolchain:base | ||
|
||
WORKDIR /tmp | ||
RUN set -xe \ | ||
&& wget -q --no-check-certificate \ | ||
https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.gz \ | ||
&& tar -xvf boost_1_76_0.tar.gz \ | ||
&& rm boost_1_76_0.tar.gz | ||
WORKDIR /proof-market-toolchain | ||
|
||
WORKDIR /tmp/boost_1_76_0 | ||
RUN set -xe \ | ||
&& sh ./bootstrap.sh \ | ||
&& ./b2 \ | ||
&& ./b2 install | ||
COPY . /proof-market-toolchain | ||
|
||
WORKDIR /proof-market-toolchain | ||
RUN ./build.sh | ||
|
||
#FROM ghcr.io/nilfoundation/proof-market-toolchain:base | ||
# | ||
#COPY scripts /proof-market-toolchain | ||
#COPY --from=builder /proof-market-toolchain/build/bin/ /proof-market-toolchain | ||
#WORKDIR /proof-market-toolchain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# syntax=docker/dockerfile:1 | ||
|
||
FROM ubuntu:22.04 | ||
RUN DEBIAN_FRONTEND=noninteractive \ | ||
set -xe \ | ||
&& apt-get update \ | ||
&& apt-get -y --no-install-recommends --no-install-suggests install \ | ||
autoconf \ | ||
automake \ | ||
build-essential \ | ||
clang-12 \ | ||
cmake \ | ||
git \ | ||
gnutls-dev \ | ||
libc-ares-dev \ | ||
libfmt-dev \ | ||
libhwloc-dev \ | ||
liblz4-dev \ | ||
libprotobuf-dev \ | ||
libsctp-dev \ | ||
libssl-dev \ | ||
libyaml-cpp-dev \ | ||
pkg-config \ | ||
ragel \ | ||
systemtap-sdt-dev \ | ||
wget \ | ||
xfslibs-dev \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
WORKDIR /tmp | ||
RUN set -xe \ | ||
&& wget -q --no-check-certificate \ | ||
https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.gz \ | ||
&& tar -xvf boost_1_76_0.tar.gz \ | ||
&& rm boost_1_76_0.tar.gz | ||
|
||
WORKDIR /tmp/boost_1_76_0 | ||
RUN set -xe \ | ||
&& sh ./bootstrap.sh \ | ||
&& ./b2 \ | ||
&& ./b2 install | ||
|
||
WORKDIR /proof-market-toolchain |
This file was deleted.
Oops, something went wrong.