Dockerfile: Add missing dependencies

Signed-off-by: lzzy12 <jhashivam2020@gmail.com>
This commit is contained in:
lzzy12 2020-03-19 15:26:57 +05:30
parent 7ba7bc92ac
commit 57afb01b63

View File

@ -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 . .