From f5b2146ce4cf84b50962679dcd5fdd1a9a932216 Mon Sep 17 00:00:00 2001 From: Justin W. Flory (he/him) Date: Jun 11 2023 17:14:03 +0000 Subject: Dockerfile: Declare each package on a new line Minor formatting and readability for quickly discerning which package is being used in the container image, and to make changes quickly when testing other things, e.g. new versions of the base container image. Signed-off-by: Justin W. Flory (he/him) --- diff --git a/Dockerfile b/Dockerfile index cbf1782..8f3d756 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,23 @@ MAINTAINER Rick Elrod WORKDIR /opt/oldrepo/ -RUN dnf install -y git gettext python-genshi python-lxml python-setuptools \ - python-dateutil python-dogpile-cache babel python-feedparser fedfind \ - python-requests python2-babel python-langtable findutils make httpd +RUN dnf install -y \ + babel \ + bat \ + fedfind \ + findutils \ + git \ + gettext \ + httpd \ + make \ + python2-babel \ + python-dateutil \ + python-dogpile-cache \ + python-feedparser \ + python-genshi \ + python-langtable \ + python-lxml \ + python-requests \ + python-setuptools EXPOSE 5000