Spaces:
Sleeping
Sleeping
Dhrumit1314
commited on
Commit
•
d4911ed
1
Parent(s):
bc28e47
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -15,7 +15,8 @@ RUN mkdir -p /code/.cache/huggingface && \
|
|
15 |
COPY ./requirements.txt /code/requirements.txt
|
16 |
|
17 |
# Install the required Python packages
|
18 |
-
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
|
19 |
|
20 |
# Copy the entire current directory into the container at /code
|
21 |
COPY . .
|
|
|
15 |
COPY ./requirements.txt /code/requirements.txt
|
16 |
|
17 |
# Install the required Python packages
|
18 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt && \
|
19 |
+
python -m spacy download en_core_web_sm
|
20 |
|
21 |
# Copy the entire current directory into the container at /code
|
22 |
COPY . .
|