You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			101 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Docker
		
	
			
		
		
	
	
			101 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Docker
		
	
# Fetching our utils
 | 
						|
FROM ubuntu:22.04 AS utils
 | 
						|
ENV DEBIAN_FRONTEND=noninteractive
 | 
						|
# Use script due local build compability
 | 
						|
COPY docker-utils/*.sh .
 | 
						|
RUN chmod +x *.sh
 | 
						|
RUN sh ./ffmpeg-fetch.sh
 | 
						|
RUN sh ./fetch-twitchdownloader.sh
 | 
						|
 | 
						|
 | 
						|
# Create our Ubuntu 22.04 with node 16.14.2 (that specific version is required as per: https://stackoverflow.com/a/72855258/8088021)
 | 
						|
# Go to 20.04
 | 
						|
FROM ubuntu:22.04 AS base
 | 
						|
ARG TARGETPLATFORM
 | 
						|
ARG DEBIAN_FRONTEND=noninteractive
 | 
						|
ENV UID=1000
 | 
						|
ENV GID=1000
 | 
						|
ENV USER=youtube
 | 
						|
ENV NO_UPDATE_NOTIFIER=true
 | 
						|
ENV PM2_HOME=/app/pm2
 | 
						|
ENV ALLOW_CONFIG_MUTATIONS=true
 | 
						|
# Directy fetch specific version
 | 
						|
## https://deb.nodesource.com/node_16.x/pool/main/n/nodejs/nodejs_16.14.2-deb-1nodesource1_amd64.deb
 | 
						|
RUN groupadd -g $GID $USER && useradd --system -m -g $USER --uid $UID $USER && \
 | 
						|
    apt update && \
 | 
						|
    apt install -y --no-install-recommends curl ca-certificates tzdata libicu70 && \
 | 
						|
    apt clean && \
 | 
						|
    rm -rf /var/lib/apt/lists/*
 | 
						|
    RUN case ${TARGETPLATFORM} in \
 | 
						|
         "linux/amd64")  NODE_ARCH=amd64   ;; \
 | 
						|
         "linux/arm")    NODE_ARCH=armhf  ;; \
 | 
						|
         "linux/arm/v7")    NODE_ARCH=armhf  ;; \
 | 
						|
         "linux/arm64")  NODE_ARCH=arm64  ;; \
 | 
						|
    esac \ 
 | 
						|
    && curl -L https://deb.nodesource.com/node_16.x/pool/main/n/nodejs/nodejs_16.14.2-deb-1nodesource1_$NODE_ARCH.deb -o ./nodejs.deb && \
 | 
						|
    apt update && \
 | 
						|
    apt install -y ./nodejs.deb && \
 | 
						|
    apt clean && \
 | 
						|
    rm -rf /var/lib/apt/lists/* &&\
 | 
						|
    rm nodejs.deb;
 | 
						|
 | 
						|
 | 
						|
# Build frontend
 | 
						|
ARG BUILDPLATFORM
 | 
						|
FROM --platform=${BUILDPLATFORM} node:16 as frontend
 | 
						|
RUN npm install -g @angular/cli
 | 
						|
WORKDIR /build
 | 
						|
COPY [ "package.json", "package-lock.json", "angular.json", "tsconfig.json", "/build/" ]
 | 
						|
COPY [ "src/", "/build/src/" ]
 | 
						|
RUN npm install && \
 | 
						|
    npm run build && \
 | 
						|
    ls -al /build/backend/public
 | 
						|
RUN npm uninstall -g @angular/cli
 | 
						|
RUN rm -rf node_modules
 | 
						|
 | 
						|
 | 
						|
# Install backend deps
 | 
						|
FROM base as backend
 | 
						|
WORKDIR /app
 | 
						|
COPY [ "backend/","/app/" ]
 | 
						|
RUN npm config set strict-ssl false && \
 | 
						|
    npm install --prod && \
 | 
						|
    ls -al
 | 
						|
 | 
						|
#FROM base as python
 | 
						|
# armv7 need build from source
 | 
						|
#WORKDIR /app
 | 
						|
#COPY docker-utils/GetTwitchDownloader.py .
 | 
						|
#RUN apt update && \
 | 
						|
#    apt install -y --no-install-recommends python3-minimal python-is-python3 python3-pip python3-dev build-essential libffi-dev && \
 | 
						|
#    apt clean && \
 | 
						|
#    rm -rf /var/lib/apt/lists/*
 | 
						|
#RUN pip install PyGithub requests
 | 
						|
#RUN python GetTwitchDownloader.py
 | 
						|
 | 
						|
# Final image
 | 
						|
FROM base
 | 
						|
RUN npm install -g pm2 && \
 | 
						|
    apt update && \
 | 
						|
    apt install -y --no-install-recommends gosu python3-minimal python-is-python3 python3-pip atomicparsley build-essential && \
 | 
						|
    pip install pycryptodomex && \
 | 
						|
    apt remove -y --purge build-essential && \
 | 
						|
    apt autoremove -y --purge && \
 | 
						|
    apt clean && \
 | 
						|
    rm -rf /var/lib/apt/lists/*
 | 
						|
WORKDIR /app
 | 
						|
# User 1000 already exist from base image
 | 
						|
COPY --chown=$UID:$GID --from=utils [ "/usr/local/bin/ffmpeg", "/usr/local/bin/ffmpeg" ]
 | 
						|
COPY --chown=$UID:$GID --from=utils [ "/usr/local/bin/ffprobe", "/usr/local/bin/ffprobe" ]
 | 
						|
COPY --chown=$UID:$GID --from=utils [ "/usr/local/bin/TwitchDownloaderCLI", "/usr/local/bin/TwitchDownloaderCLI"]
 | 
						|
COPY --chown=$UID:$GID --from=backend ["/app/","/app/"]
 | 
						|
COPY --chown=$UID:$GID --from=frontend [ "/build/backend/public/", "/app/public/" ]
 | 
						|
#COPY --chown=$UID:$GID --from=python ["/app/TwitchDownloaderCLI","/usr/local/bin/TwitchDownloaderCLI"]
 | 
						|
RUN chmod +x /app/fix-scripts/*.sh
 | 
						|
# Add some persistence data
 | 
						|
#VOLUME ["/app/appdata"]
 | 
						|
 | 
						|
EXPOSE 17442
 | 
						|
ENTRYPOINT [ "/app/entrypoint.sh" ]
 | 
						|
CMD [ "npm","start" ]
 |