annotate contrib/packaging/docker/fedora28 @ 42275:730edbd836d8
automation: only iterate over our AMIs
We can't delete AMIs that we don't own. Iterating over other
AMIs won't work and slows down execution.
Differential Revision: https://phab.mercurial-scm.org/D6283
author |
Gregory Szorc <gregory.szorc@gmail.com> |
date |
Fri, 19 Apr 2019 05:07:44 -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
|