Walter Mantovani commited on
Commit
573e355
·
1 Parent(s): c17fbbf
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -1,6 +1,11 @@
1
  # Use the official Python 3.9 image
2
  FROM python:3.11
3
 
 
 
 
 
 
4
  # Set the working directory to /code
5
  WORKDIR /code
6
 
 
1
  # Use the official Python 3.9 image
2
  FROM python:3.11
3
 
4
+ RUN export LC_ALL="it_IT.UTF-8"
5
+ RUN export LC_TIME="it_IT.UTF-8"
6
+ RUN export LC_CTYPE="it_IT.UTF-8"
7
+ RUN dpkg-reconfigure locales
8
+
9
  # Set the working directory to /code
10
  WORKDIR /code
11