mirror of
				https://github.com/ton-blockchain/ton
				synced 2025-03-09 15:40:10 +00:00 
			
		
		
		
	* include fift and func into Docker image Co-authored-by: EmelyanenkoK <emelyanenko.kirill@gmail.com> Co-authored-by: neodiX <neodix42@ton.org>
		
			
				
	
	
		
			47 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM ubuntu:22.04 AS builder
 | |
| RUN apt-get update && \
 | |
|         DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential cmake clang openssl libssl-dev zlib1g-dev gperf wget git ninja-build libsecp256k1-dev libsodium-dev libmicrohttpd-dev liblz4-dev pkg-config autoconf automake libtool libjemalloc-dev lsb-release software-properties-common gnupg
 | |
| 
 | |
| RUN wget https://apt.llvm.org/llvm.sh && \
 | |
|     chmod +x llvm.sh && \
 | |
|     ./llvm.sh 16 all && \
 | |
|     rm -rf /var/lib/apt/lists/*
 | |
| 
 | |
| ENV CC=/usr/bin/clang-16
 | |
| ENV CXX=/usr/bin/clang++-16
 | |
| ENV CCACHE_DISABLE=1
 | |
| 
 | |
| WORKDIR /
 | |
| RUN mkdir ton
 | |
| WORKDIR /ton
 | |
| 
 | |
| COPY ./ ./
 | |
| 
 | |
| RUN mkdir build && \
 | |
|         cd build && \
 | |
|         cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DPORTABLE=1 -DTON_ARCH= -DTON_USE_JEMALLOC=ON .. && \
 | |
|         ninja storage-daemon storage-daemon-cli tonlibjson fift func validator-engine validator-engine-console generate-random-id dht-server lite-client
 | |
| 
 | |
| FROM ubuntu:22.04
 | |
| RUN apt-get update && \
 | |
|     apt-get install -y wget curl libatomic1 openssl libsecp256k1-dev libsodium-dev libmicrohttpd-dev liblz4-dev libjemalloc-dev htop net-tools netcat iptraf-ng jq tcpdump pv plzip && \
 | |
|     rm -rf /var/lib/apt/lists/*
 | |
| 
 | |
| RUN mkdir -p /var/ton-work/db /var/ton-work/scripts /usr/share/ton/smartcont/ /usr/lib/fift/
 | |
| 
 | |
| COPY --from=builder /ton/build/storage/storage-daemon/storage-daemon /usr/local/bin/
 | |
| COPY --from=builder /ton/build/storage/storage-daemon/storage-daemon-cli /usr/local/bin/
 | |
| 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/
 | |
| COPY --from=builder /ton/build/crypto/fift /usr/local/bin/
 | |
| COPY --from=builder /ton/build/crypto/func /usr/local/bin/
 | |
| COPY --from=builder /ton/crypto/smartcont/* /usr/share/ton/smartcont/
 | |
| COPY --from=builder /ton/crypto/fift/lib/* /usr/lib/fift/
 | |
| 
 | |
| WORKDIR /var/ton-work/db
 | |
| COPY ./docker/init.sh ./docker/control.template /var/ton-work/scripts/
 | |
| RUN chmod +x /var/ton-work/scripts/init.sh
 | |
| 
 | |
| ENTRYPOINT ["/var/ton-work/scripts/init.sh"]
 |