Walter Mantovani commited on
Commit
fa4d114
·
1 Parent(s): 573e355
Files changed (1) hide show
  1. Dockerfile +6 -6
Dockerfile CHANGED
@@ -1,11 +1,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
 
@@ -16,7 +11,12 @@ COPY ./requirements.txt /code/requirements.txt
16
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
17
 
18
  RUN apt-get update
19
- RUN apt-get install sqlite3
 
 
 
 
 
20
 
21
  # Set up a new user named "user" with user ID 1000
22
  RUN useradd -m -u 1000 user
 
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
 
 
11
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12
 
13
  RUN apt-get update
14
+ RUN apt-get install sqlite3 locales
15
+
16
+ RUN export LC_ALL="it_IT.UTF-8"
17
+ RUN export LC_TIME="it_IT.UTF-8"
18
+ RUN export LC_CTYPE="it_IT.UTF-8"
19
+ RUN dpkg-reconfigure locales
20
 
21
  # Set up a new user named "user" with user ID 1000
22
  RUN useradd -m -u 1000 user