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.
		
		
		
		
		
			
		
			
				
	
	
		
			72 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Docker
		
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Docker
		
	
# Fetching our ffmpeg
 | 
						|
FROM ubuntu:22.04 AS ffmpeg
 | 
						|
ENV DEBIAN_FRONTEND=noninteractive
 | 
						|
# Use script due local build compability
 | 
						|
COPY ffmpeg-fetch.sh .
 | 
						|
RUN chmod +x ffmpeg-fetch.sh
 | 
						|
RUN sh ./ffmpeg-fetch.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:20.04 AS base
 | 
						|
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
 | 
						|
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 && \
 | 
						|
    curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && \
 | 
						|
    apt install -y --no-install-recommends nodejs && \
 | 
						|
    npm -g install npm n && \
 | 
						|
    n 16.14.2 && \
 | 
						|
    apt clean && \
 | 
						|
    rm -rf /var/lib/apt/lists/*
 | 
						|
 | 
						|
 | 
						|
# Build frontend
 | 
						|
FROM base 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
 | 
						|
 | 
						|
 | 
						|
# Install backend deps
 | 
						|
FROM base as backend
 | 
						|
WORKDIR /app
 | 
						|
COPY [ "backend/","/app/" ]
 | 
						|
RUN npm config set strict-ssl false && \
 | 
						|
    npm install --prod && \
 | 
						|
    ls -al
 | 
						|
 | 
						|
 | 
						|
# 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 && \
 | 
						|
    apt clean && \
 | 
						|
    rm -rf /var/lib/apt/lists/*
 | 
						|
RUN pip install tcd pycryptodomex
 | 
						|
WORKDIR /app
 | 
						|
# User 1000 already exist from base image
 | 
						|
COPY --chown=$UID:$GID --from=ffmpeg [ "/usr/local/bin/ffmpeg", "/usr/local/bin/ffmpeg" ]
 | 
						|
COPY --chown=$UID:$GID --from=ffmpeg [ "/usr/local/bin/ffprobe", "/usr/local/bin/ffprobe" ]
 | 
						|
COPY --chown=$UID:$GID --from=backend ["/app/","/app/"]
 | 
						|
COPY --chown=$UID:$GID --from=frontend [ "/build/backend/public/", "/app/public/" ]
 | 
						|
RUN chmod +x /app/fix-scripts/*.sh
 | 
						|
# Add some persistence data
 | 
						|
#VOLUME ["/app/appdata"]
 | 
						|
 | 
						|
EXPOSE 17442
 | 
						|
ENTRYPOINT [ "/app/entrypoint.sh" ]
 | 
						|
CMD [ "npm","start" ]
 |