From 57afb01b633421a67069e26d5d3ab088dbba98ca Mon Sep 17 00:00:00 2001 From: lzzy12 Date: Thu, 19 Mar 2020 15:26:57 +0530 Subject: [PATCH] Dockerfile: Add missing dependencies Signed-off-by: lzzy12 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0b26e2d..30d9e7d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:18.04 WORKDIR /usr/src/app RUN chmod 777 /usr/src/app RUN apt -qq update -RUN apt -qq install -y aria2 python3 python3-pip locales +RUN apt -qq install -y aria2 python3 python3-pip locales python3-lxml curl pv jq COPY requirements.txt . RUN pip3 install --no-cache-dir -r requirements.txt COPY . .