commit 24ee0b74600a2fdc2b6775aa1739e463a0fb5fd6 Author: Jay Date: Thu Feb 21 10:55:33 2019 +0800 first diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c40e55e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM node:lts +WORKDIR /data +COPY ./ffmpeg.tgz / +RUN apt-get update && \ + apt-get full-upgrade -y && \ + apt-get install -y unoconv curl imagemagick graphicsmagick curl wget python3 python3-pip qpdf poppler-utils git curl wget && \ + apt-get clean && \ + mkdir -p /usr/local/bin && \ + tar zxvf /ffmpeg.tgz -C /usr/local/bin && \ + rm /ffmpeg.tgz diff --git a/ffmpeg.tgz b/ffmpeg.tgz new file mode 100644 index 0000000..726fc68 Binary files /dev/null and b/ffmpeg.tgz differ