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.
2 parents dfd5e95 + 4896c98 commit ec21df3Copy full SHA for ec21df3
swift-ci/master/fedora/31/Dockerfile
@@ -0,0 +1,32 @@
1
+FROM fedora:31
2
+
3
+RUN groupadd -g 42 build-user && \
4
+ useradd -m -r -u 42 -g build-user build-user
5
6
+RUN dnf -y update && dnf install -y \
7
+ clang \
8
+ cmake \
9
+ git \
10
+ libblocksruntime-static \
11
+ libbsd-devel \
12
+ libcurl-devel \
13
+ libedit-devel \
14
+ libicu-devel \
15
+ libsqlite3x-devel \
16
+ libuuid-devel \
17
+ libxml2-devel \
18
+ make \
19
+ ninja-build \
20
+ python-unversioned-command \
21
+ python27 \
22
+ python3 \
23
+ python3-devel \
24
+ python3-distro \
25
+ python3-six \
26
+ rsync \
27
+ swig
28
29
+USER build-user
30
31
+WORKDIR /home/build-user
32
0 commit comments