From d44e69c968de2b5e7f10e09f88d25ea9767120f3 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Fri, 18 Mar 2022 10:34:31 +0100 Subject: [PATCH] Remove useless env and entrypoint --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7696fdd..738a34a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,5 @@ FROM linuxserver/ffmpeg:4.4-cli-ls46 -ENV DEBIAN_FRONTEND noninteractive -ENV PUID 1000 -ENV PGID 1000 -ENV LANG C.UTF-8 - RUN apt-get update && \ apt-get install -y \ vim p7zip* git rsync lftp speedtest-cli rename megatools wget curl procps \ @@ -18,4 +13,5 @@ RUN curl -sSL https://raw.githubusercontent.com/tremc/tremc/master/tremc -o /usr COPY ./commands/* /usr/local/bin/ RUN chmod +x /usr/local/bin/* +ENTRYPOINT [] CMD ["tail", "-F", "/dev/null"]