annotate contrib/packaging/docker/fedora28 @ 43016:92c8bae84e7a
automation: increase size of Linux AMI build volume
I ran out of space attempting to build a few AMIs. Let's give
the environment an extra 2 GB to utilize.
Differential Revision: https://phab.mercurial-scm.org/D6915
author |
Gregory Szorc <gregory.szorc@gmail.com> |
date |
Sun, 29 Sep 2019 11:06:45 -0700 |
parents |
600d8d9b8551 |
children |
|
rev |
line source |
38561
|
1 FROM fedora:28
|
|
2
|
|
3 RUN groupadd -g 1000 build && \
|
|
4 useradd -u 1000 -g 1000 -s /bin/bash -d /build -m build
|
|
5
|
|
6 RUN dnf install -y \
|
|
7 gcc \
|
|
8 gettext \
|
|
9 make \
|
|
10 python-devel \
|
|
11 python-docutils \
|
|
12 rpm-build
|
|
13
|
|
14 # For creating repo meta data
|
|
15 RUN dnf install -y createrepo
|