From: Michael Tremer Date: Fri, 2 Jul 2021 15:09:44 +0000 (+0000) Subject: Actually drop Dockerfile X-Git-Tag: 0.9.28~1133 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=588456a69b894b830ef89d90075ca90db439aad0;p=pakfire.git Actually drop Dockerfile Signed-off-by: Michael Tremer --- diff --git a/Dockerfile.in b/Dockerfile.in deleted file mode 100644 index 60c41c6d0..000000000 --- a/Dockerfile.in +++ /dev/null @@ -1,49 +0,0 @@ -FROM centos:latest -MAINTAINER jonatanschlag - -LABEL \ - org.ipfire.pakfire.name = "@PACKAGE_NAME@" \ - org.ipfire.pakfire.url = "https://pakfire.ipfire.org" \ - org.ipfire.pakfire.vendor = "IPFire Project" \ - org.ipfire.pakfire.version = "@PACKAGE_VERSION@" - -# Update all OS packages -RUN yum update -y && yum clean all - -# Add EPEL -RUN yum install -y epel-release && yum clean all - -# Install all dependencies -RUN yum install -y \ - autoconf \ - file \ - gcc \ - git \ - intltool \ - libcap \ - libcap-devel \ - libtool \ - libsolv \ - libsolv-devel \ - make \ - python-devel \ - xz-devel && yum clean all - -# Copy the pakfire source code -ADD . /build/pakfire - -WORKDIR /build/pakfire - -# Compile pakfire -RUN ./autogen.sh && ./configure --prefix=/usr --sysconfdir=/etc && make -j4 && make check && make install && rm -rf /build/pakfire - -# Go back to /root -WORKDIR /root - -# Cleanup -RUN yum remove -y *-devel && yum autoremove -y && yum clean all - -USER root - -# Define default command. -CMD ["/bin/bash"]