Skip to content

Commit df0b7fb

Browse files
committed
Add ubuntu1804 Dockerfile
1 parent b681525 commit df0b7fb

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
FROM ubuntu:18.04
2+
3+
RUN groupadd -g 998 build-user && \
4+
useradd -m -r -u 998 -g build-user build-user
5+
6+
ENV DEBIAN_FRONTEND="noninteractive"
7+
8+
RUN apt -y update && apt -y install \
9+
build-essential \
10+
clang \
11+
cmake \
12+
git \
13+
icu-devtools \
14+
libcurl4-openssl-dev \
15+
libedit-dev \
16+
libicu-dev \
17+
libncurses5-dev \
18+
libpython3-dev \
19+
libsqlite3-dev \
20+
libxml2-dev \
21+
ninja-build \
22+
pkg-config \
23+
python \
24+
python-six \
25+
python3-six \
26+
python3-distutils \
27+
rsync \
28+
swig \
29+
systemtap-sdt-dev \
30+
tzdata \
31+
unzip \
32+
uuid-dev
33+
34+
USER build-user
35+
36+
WORKDIR /home/build-user

0 commit comments

Comments
 (0)