]> git.ipfire.org Git - ipfire.org.git/commitdiff
Drop support for Docker stuff
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 2 Mar 2023 19:11:28 +0000 (19:11 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 2 Mar 2023 19:11:28 +0000 (19:11 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Dockerfile [deleted file]
Makefile.am

diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644 (file)
index c59ddb0..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-FROM centos:latest
-
-EXPOSE 80
-
-# Enable EPEL
-RUN yum install -y epel-release
-
-# Install all updates
-RUN yum update -y
-
-# Install required packages
-RUN yum install -y \
-       autoconf \
-       automake \
-       curl-devel \
-       gcc \
-       make \
-       openldap-devel \
-       python34 \
-       python34-devel \
-       python34-pip \
-       sassc \
-       \
-       /usr/share/hwdata/pci.ids \
-       /usr/share/hwdata/usb.ids
-
-# Install Python packages
-ADD requirements.txt .
-RUN pip3 install -r requirements.txt
-
-# Copy code into the container
-COPY . /build/ipfire.org
-WORKDIR /build/ipfire.org
-
-# Install the webapp
-RUN ./autogen.sh && ./configure --prefix=/usr --sysconfdir=/etc \
-       && make -j4 && make install
-
-# Go back to /root
-WORKDIR /root
-
-# Run the webapp
-CMD ["ipfire.org-webapp", "--debug", "--logging=debug", "--port=80"]
index 00d3024c11253afecdc406321630edddaeb0673b..a2a3096c6927d51d4390d521413d9a2e92971dec 100644 (file)
@@ -1083,8 +1083,3 @@ src/static/img/apple-touch-icon-%-precomposed.png: src/static/img/ipfire-tux.png
 .PHONY: update
 update:
        for i in src/systemd/ipfire.org-webapp-*.service; do systemctl restart $$(basename $${i}) && sleep 5; done
-
-# Docker
-.PHONY: docker
-docker: Dockerfile
-       docker build -t "ipfire/webapp:$(PACKAGE_VERSION)" .