6 RUN yum install -y epel-release
11 # Install required packages
24 /usr/share/hwdata/pci.ids \
25 /usr/share/hwdata/usb.ids
27 # Install Python packages
28 ADD requirements.txt .
29 RUN pip3 install -r requirements.txt
31 # Copy code into the container
32 COPY . /build/ipfire.org
33 WORKDIR /build/ipfire.org
36 RUN ./autogen.sh && ./configure --prefix=/usr --sysconfdir=/etc \
37 && make -j4 && make install
43 CMD ["ipfire.org-webapp", "--debug", "--logging=debug", "--port=80"]