aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorTolmachev Igor <me@igorek.dev>2026-03-26 16:33:21 +0300
committerTolmachev Igor <me@igorek.dev>2026-03-26 16:33:21 +0300
commit959d8c1b5401e0758e6c063fb3035e33e3426c97 (patch)
tree2c8ac53ece1a52885776d4cab3b3b0f01fa0965e /Dockerfile
parent9c905f22de4fa2e2f60ea9d473c14cb075a244e2 (diff)
downloadvpn_manager_bot-959d8c1b5401e0758e6c063fb3035e33e3426c97.tar.gz
vpn_manager_bot-959d8c1b5401e0758e6c063fb3035e33e3426c97.zip
Fix locales in docker
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