aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 0a9a6fd..4a1ddad 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,11 @@
1FROM python:latest 1FROM python:latest
2 2
3RUN apt update
4RUN apt install locales -y
5RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen
6RUN sed -i -e 's/# ru_RU.UTF-8 UTF-8/ru_RU.UTF-8 UTF-8/' /etc/locale.gen
7RUN locale-gen
8
3WORKDIR /app 9WORKDIR /app
4COPY requirements.txt . 10COPY requirements.txt .
5RUN pip install pip -U 11RUN pip install pip -U