parth parekh
commited on
Commit
Β·
b4e1d1e
1
Parent(s):
3f80cab
added cache folder
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -11,8 +11,11 @@ WORKDIR /app
|
|
11 |
COPY requirements.txt .
|
12 |
RUN pip install --no-cache-dir -r requirements.txt
|
13 |
|
|
|
|
|
14 |
# Change ownership of the application directory to the new user
|
15 |
RUN chown -R user:user /.cache
|
|
|
16 |
RUN chown -R user:user /app
|
17 |
|
18 |
|
|
|
11 |
COPY requirements.txt .
|
12 |
RUN pip install --no-cache-dir -r requirements.txt
|
13 |
|
14 |
+
RUN mkdir /.cache
|
15 |
+
|
16 |
# Change ownership of the application directory to the new user
|
17 |
RUN chown -R user:user /.cache
|
18 |
+
|
19 |
RUN chown -R user:user /app
|
20 |
|
21 |
|