62559b9167
Using the "latest" tag is not a good idea because this changes what release it points to every 6 months. Together with caching of docker builds this can cause confusion where CI has cached & built with Fedora N, while a developer tries to reproduce a CI problem with Fedora N + 1, or vica-verca. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
14 lines
276 B
Docker
14 lines
276 B
Docker
FROM fedora:29
|
|
ENV PACKAGES \
|
|
gcc \
|
|
glib2-devel.i686 \
|
|
glibc-devel.i686 \
|
|
glibc-static.i686 \
|
|
gnutls-devel.i686 \
|
|
nettle-devel.i686 \
|
|
pixman-devel.i686 \
|
|
zlib-devel.i686
|
|
|
|
RUN dnf install -y $PACKAGES
|
|
RUN rpm -q $PACKAGES | sort > /packages.txt
|