We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b681525 commit df0b7fbCopy full SHA for df0b7fb
swift-ci/master/ubuntu/18.04/Dockerfile
@@ -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