This commit is contained in:
Alagris 2021-04-11 20:08:13 +02:00
parent dac575645d
commit d175c58d6e
1 changed files with 2 additions and 2 deletions

View File

@ -3,11 +3,11 @@ FROM ubuntu:latest
ENV PYTHONIOENCODING=utf-8
# Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes)
RUN apt update && apt install -y python3 python3-pip git
RUN apt update && apt install -y python3 python3-pip git locales
RUN pip3 install requests
RUN locale-gen en_US.UTF-8
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen en_US.UTF-8
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8'