mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 19:52:18 +00:00
* add: TON Overflow * macOS compile with docker * QEMU does not run on macOS itself * QEMU does not run on macOS itself * QEMU does not run on macOS itself * QEMU does not run on macOS itself * QEMU does not run on macOS itself * QEMU does not run on macOS itself * QEMU does not run on macOS itself * ubuntu multi-platform compile * ubuntu multi-platform compile * ubuntu multi-platform compile * ubuntu multi-platform compile test matrix * ubuntu multi-platform compile test matrix * ubuntu multi-platform compile test matrix * copy from container and publish * copy from container and publish * copy from container and publish * copy from container and publish * copy from container and publish * copy from container and publish * copy from container and publish * copy from container and publish * multi platform with upload * bug fix * bug fix * bug fix * bug fix * bug fix * bug fix * bug fix without exec * bug fix without filename * bug fix without filename * Update docker-compile-ubuntu.yml * Update docker-compile-ubuntu.yml * Update docker-compile-ubuntu.yml * Update docker-compile-ubuntu.yml * Update docker-compile-ubuntu.yml * Update docker-compile-ubuntu.yml * fix tzdata Co-authored-by: Doge <awesomedogewow@gmail.com> Co-authored-by: EmelyanenkoK <emelyanenko.kirill@gmail.com>
17 lines
No EOL
664 B
Docker
17 lines
No EOL
664 B
Docker
FROM ubuntu:20.04
|
|
|
|
RUN apt update
|
|
RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install tzdata
|
|
RUN apt install -y build-essential cmake clang openssl libssl-dev zlib1g-dev gperf wget git curl libreadline-dev ccache libmicrohttpd-dev ninja-build
|
|
|
|
WORKDIR /
|
|
|
|
RUN git clone --recurse-submodules https://github.com/ton-blockchain/ton.git
|
|
|
|
WORKDIR /ton
|
|
RUN mkdir /ton/build
|
|
WORKDIR /ton/build
|
|
ENV CC clang
|
|
ENV CXX clang++
|
|
RUN cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DTON_ARCH= ..
|
|
RUN ninja tonlibjson blockchain-explorer fift func validator-engine validator-engine-console create-state generate-random-id create-hardfork dht-server create-state lite-client |