Walter Mantovani commited on
Commit
4cfdcd5
·
1 Parent(s): 8caf321
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -10,6 +10,9 @@ COPY ./requirements.txt /code/requirements.txt
10
  # Install requirements.txt
11
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12
 
 
 
 
13
  # Set up a new user named "user" with user ID 1000
14
  RUN useradd -m -u 1000 user
15
  # Switch to the "user" user
 
10
  # Install requirements.txt
11
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12
 
13
+ RUN apt-get update
14
+ RUN apt-get install sqlite3
15
+
16
  # Set up a new user named "user" with user ID 1000
17
  RUN useradd -m -u 1000 user
18
  # Switch to the "user" user