Dockerfile.runenv 555 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
FROM ubuntu:jammy
RUN apt-get update \
 && apt-get install -y \
	libboost-coroutine1.74.0 \
	libboost-fiber1.74.0 \
	libboost-iostreams1.74.0 \
 && rm -rf /var/lib/apt/lists/*
RUN apt-get update \
 && apt-get install -y \
10
	make \
11
	libelf1 \
12
	libgoogle-perftools4 \
13
14
	libpcap0.8 \
	libpixman-1-0 \
15
16
17
18
	libprotobuf23 \
	libpython3.10 \
	python-is-python3 \
	python3-six \
19
20
21
22
23
24
25
26
27
	rsync \
	unzip \
	wget \
 && rm -rf /var/lib/apt/lists/*
RUN apt-get update \
 && apt-mark hold shared-mime-info \
 && apt-get install -y \
	libglib2.0-0 \
 && rm -rf /var/lib/apt/lists/*