seanpedrickcase
commited on
Commit
•
452d304
1
Parent(s):
619a281
correctly spelled --no-cache-dir this time
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -14,9 +14,9 @@ WORKDIR /src
|
|
14 |
|
15 |
COPY requirements.txt .
|
16 |
|
17 |
-
RUN pip install -r requirements.txt
|
18 |
|
19 |
-
RUN pip install gradio==4.31.0
|
20 |
|
21 |
# Set up a new user named "user" with user ID 1000
|
22 |
RUN useradd -m -u 1000 user
|
|
|
14 |
|
15 |
COPY requirements.txt .
|
16 |
|
17 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
18 |
|
19 |
+
RUN pip install --no-cache-dir gradio==4.31.0
|
20 |
|
21 |
# Set up a new user named "user" with user ID 1000
|
22 |
RUN useradd -m -u 1000 user
|