From c79491f48e27fe87b6e33a189e34aab215c4cb61 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 31 Mar 2025 09:38:28 +0300 Subject: [PATCH] Delete Dockerfile --- Dockerfile | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index c54ff3c2..00000000 --- a/Dockerfile +++ /dev/null @@ -1,20 +0,0 @@ -FROM node:22-alpine -ARG GIT_REPO=https://github.com/iptv-org/epg.git -ARG GIT_BRANCH=master -ARG USER=iptv-org -ARG WORKDIR=/epg -WORKDIR $WORKDIR -RUN apk update \ - && apk upgrade --no-cache \ - && apk add --no-cache git tzdata bash \ - && npm install -g npm@latest \ - && git clone --depth 1 -b $(echo "${GIT_BRANCH} ${GIT_REPO}") . \ - && npm install \ - && mkdir /public \ - && adduser -D $USER \ - && chown -R $USER $WORKDIR \ - && cd $WORKDIR \ - && apk del git -USER $USER -EXPOSE 3000 -CMD [ "npx", "pm2-runtime", "pm2.config.js" ] \ No newline at end of file