From 4e3e1dd8518cc6c733839f8c33733a52a08abfc3 Mon Sep 17 00:00:00 2001 From: Dan Jesus Date: Tue, 16 Mar 2021 23:35:53 -0300 Subject: [PATCH] it fixes recordings when uses moodle BBB plugin --- mod/recordings/Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/mod/recordings/Dockerfile b/mod/recordings/Dockerfile index e6b3fd7..27420db 100644 --- a/mod/recordings/Dockerfile +++ b/mod/recordings/Dockerfile @@ -15,7 +15,13 @@ RUN apt-get update && apt-get install -y \ ffmpeg \ poppler-utils \ imagemagick \ - supervisor + supervisor \ + locales \ + locales-all + +ENV LC_ALL en_US.UTF-8 +ENV LANG en_US.UTF-8 +ENV LANGUAGE en_US.UTF-8 # compile and install mkclean RUN cd /tmp \