Skip to content

Commit

Permalink
Fixed Docker build error
Browse files Browse the repository at this point in the history
  • Loading branch information
lzzy12 authored Jun 10, 2020
1 parent 3bcc7db commit 0e5c5ca
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ FROM ubuntu:18.04
WORKDIR /usr/src/app
RUN chmod 777 /usr/src/app
RUN apt-get -qq update
RUN apt-get -qq install -y aria2 python3 python3-pip \
RUN apt-get -qq install -y aria2 git python3 python3-pip \
locales python3-lxml \
curl pv jq ffmpeg
COPY requirements.txt .
RUN pip3 install --no-cache-dir -r requirements.txt
RUN pip3 install --no-cache-dir -r requirements.txt && \
apt-get -qq purge git

RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
Expand Down

0 comments on commit 0e5c5ca

Please sign in to comment.