From 6cdc7dd49dac5d469c831c45fdbbcbb12a6c39bd Mon Sep 17 00:00:00 2001 From: sergiotarxz Date: Tue, 19 Jan 2021 16:00:01 +0100 Subject: [PATCH] Having Dockerfile on the project breaks caching, splitting it to a different project. --- Dockerfile | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 74a3f65..0000000 --- a/Dockerfile +++ /dev/null @@ -1,24 +0,0 @@ -# Author: @ale@ale.manalejandro.com Fixes by: Sergiotarxz. LICENSE: AGPLv3 - -FROM debian:sid -COPY . /peertube-dl -WORKDIR /peertube-dl -RUN apt update && apt -y install perl \ -build-essential \ -libwww-perl \ -liburi-encode-perl \ -libjson-perl \ -liblwp-protocol-https-perl \ -libtest-mockobject-perl \ -libtest-most-perl \ -libmojolicious-perl \ -libfile-mimeinfo-perl \ -cpanminus \ -duktape-dev \ -&& apt clean \ -&& perl Makefile.PL \ -&& make \ -&& make test \ -&& make install - -ENTRYPOINT [ "peertube-dl" ]