# Fetching our ffmpeg FROM ubuntu:22.04 AS ffmpeg ENV DEBIAN_FRONTEND=noninteractive # Use script due local build compability COPY docker-utils/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 build-essential && \ apt clean && \ rm -rf /var/lib/apt/lists/* RUN pip install pycryptodomex WORKDIR /app COPY docker-utils/GetTwitchDownloader.py . RUN python GetTwitchDownloader.py # 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 chown $UID:$GID . RUN chmod +x /app/fix-scripts/*.sh # Add some persistence data #VOLUME ["/app/appdata"] EXPOSE 17442 ENTRYPOINT [ "/app/entrypoint.sh" ] CMD [ "npm","start" ]