mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
clean libc-bin
This commit is contained in:
parent
800031d96a
commit
a08b02dd45
3 changed files with 11 additions and 4 deletions
|
@ -12,7 +12,7 @@ env:
|
|||
|
||||
jobs:
|
||||
build-and-push:
|
||||
runs-on: ubuntu-24.04
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v3
|
||||
|
|
2
.github/workflows/docker-ubuntu-image.yml
vendored
2
.github/workflows/docker-ubuntu-image.yml
vendored
|
@ -12,7 +12,7 @@ env:
|
|||
|
||||
jobs:
|
||||
build-and-push:
|
||||
runs-on: ubuntu-24.04
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v3
|
||||
|
|
11
Dockerfile
11
Dockerfile
|
@ -1,7 +1,13 @@
|
|||
FROM ubuntu:22.04 AS builder
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update && \
|
||||
DEBIAN_FRONTEND=noninteractive apt-get --reinstall install libc-bin && \
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install -y build-essential cmake clang openssl libssl-dev zlib1g-dev gperf wget git ninja-build libsodium-dev libmicrohttpd-dev liblz4-dev pkg-config autoconf automake libtool libjemalloc-dev lsb-release software-properties-common gnupg
|
||||
rm /var/lib/dpkg/info/libc-bin.* && \
|
||||
apt-get clean && \
|
||||
apt-get update && \
|
||||
apt install libc-bin && \
|
||||
apt-get install -y build-essential cmake clang openssl libssl-dev zlib1g-dev gperf wget git \
|
||||
ninja-build 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 && \
|
||||
|
@ -26,6 +32,7 @@ RUN mkdir build && \
|
|||
blockchain-explorer emulator tonlibjson http-proxy adnl-proxy
|
||||
|
||||
FROM ubuntu:22.04
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update && \
|
||||
apt-get install -y wget curl libatomic1 openssl libsodium-dev libmicrohttpd-dev liblz4-dev libjemalloc-dev htop \
|
||||
net-tools netcat iptraf-ng jq tcpdump pv plzip && \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue