]> git.ipfire.org Git - pakfire.git/commitdiff
Actually drop Dockerfile
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 2 Jul 2021 15:09:44 +0000 (15:09 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 2 Jul 2021 15:09:44 +0000 (15:09 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Dockerfile.in [deleted file]

diff --git a/Dockerfile.in b/Dockerfile.in
deleted file mode 100644 (file)
index 60c41c6..0000000
+++ /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"]