mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 11:12:16 +00:00
32 lines
1 KiB
Docker
32 lines
1 KiB
Docker
FROM ubuntu:20.04 as builder
|
|
RUN apt-get update && \
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential cmake clang-6.0 openssl libssl-dev zlib1g-dev gperf wget git && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
ENV CC clang-6.0
|
|
ENV CXX clang++-6.0
|
|
WORKDIR /
|
|
RUN git clone --recursive https://github.com/newton-blockchain/ton
|
|
WORKDIR /ton
|
|
|
|
RUN mkdir build && \
|
|
cd build && \
|
|
cmake .. -DCMAKE_BUILD_TYPE=Release && \
|
|
make -j 4
|
|
|
|
FROM ubuntu:20.04
|
|
RUN apt-get update && \
|
|
apt-get install -y openssl wget&& \
|
|
rm -rf /var/lib/apt/lists/*
|
|
RUN mkdir -p /var/ton-work/db && \
|
|
mkdir -p /var/ton-work/db/static
|
|
|
|
COPY --from=builder /ton/build/lite-client/lite-client /usr/local/bin/
|
|
COPY --from=builder /ton/build/validator-engine/validator-engine /usr/local/bin/
|
|
COPY --from=builder /ton/build/validator-engine-console/validator-engine-console /usr/local/bin/
|
|
COPY --from=builder /ton/build/utils/generate-random-id /usr/local/bin/
|
|
|
|
WORKDIR /var/ton-work/db
|
|
COPY init.sh control.template ./
|
|
RUN chmod +x init.sh
|
|
|
|
ENTRYPOINT ["/var/ton-work/db/init.sh"]
|