Swapnil-101 commited on
Commit
1bbcd61
·
verified ·
1 Parent(s): 8aba3ec

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -9,11 +9,12 @@ COPY ./requirements.txt /code/requirements.txt
9
 
10
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
11
 
12
- RUN mkdir /.cache && chmod 777 /.cache
13
 
14
  # Set permissions for the working directory
15
  RUN chmod 777 /code
16
 
 
17
  # Set permissions for the database file
18
  RUN touch /code/users.db && chmod 777 /code/users.db
19
 
 
9
 
10
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
11
 
12
+ RUN mkdir -p /code/.cache && chmod 777 /code/.cache
13
 
14
  # Set permissions for the working directory
15
  RUN chmod 777 /code
16
 
17
+
18
  # Set permissions for the database file
19
  RUN touch /code/users.db && chmod 777 /code/users.db
20