From 0850c41d4d36ee0fd1adbb2b0eb38357f429edac Mon Sep 17 00:00:00 2001 From: lzzy12 Date: Fri, 27 Dec 2019 17:13:46 +0530 Subject: [PATCH] Fixed files with unicode characters in name not uploading Signed-off-by: lzzy12 --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9c8e2d8..64e0464 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,13 @@ 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 +RUN apt -qq install -y aria2 python3 python3-pip locales COPY requirements.txt . RUN pip3 install --no-cache-dir -r requirements.txt COPY . . +RUN locale-gen en_US.UTF-8 +ENV LANG en_US.UTF-8 +ENV LANGUAGE en_US:en +ENV LC_ALL en_US.UTF-8 CMD ["bash","start.sh"]