From c67d6ea89a496863fbc4c991b3ae16e1b4668694 Mon Sep 17 00:00:00 2001 From: Tzahi12345 Date: Wed, 29 Apr 2020 00:27:39 -0400 Subject: [PATCH] Added atomicparsley as a dependency to Docker, and listed it as an optional dependency for normal installs --- README.md | 3 +++ backend/Dockerfile | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8a3f312..69b155b 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,9 @@ Make sure you have these dependencies installed on your system: nodejs and youtu sudo apt-get install nodejs youtube-dl ``` +Optional dependencies: +* AtomicParsley (for embedding thumbnails, package name `atomicparsley`) + ### Installing 1. First, download the [latest release](https://github.com/Tzahi12345/YoutubeDL-Material/releases/latest)! diff --git a/backend/Dockerfile b/backend/Dockerfile index df3665b..354857a 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.11 -RUN apk add --update npm python ffmpeg +RUN apk add --update npm python ffmpeg atomicparsley # Change directory so that our commands run inside this new directory WORKDIR /app