Spaces:
Paused
Paused
Commit
·
005a0a5
1
Parent(s):
c82a45d
- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -6,8 +6,8 @@ RUN apt-get update && \
|
|
6 |
apt-get clean && apt-get -y autoremove
|
7 |
|
8 |
WORKDIR /app
|
9 |
-
COPY
|
10 |
-
RUN python -m pip install --use-deprecated=legacy-resolver -r
|
11 |
&& python -m pip cache purge
|
12 |
|
13 |
RUN python -m unidic download
|
|
|
6 |
apt-get clean && apt-get -y autoremove
|
7 |
|
8 |
WORKDIR /app
|
9 |
+
COPY requirements.txt .
|
10 |
+
RUN python -m pip install --use-deprecated=legacy-resolver -r requirements.txt \
|
11 |
&& python -m pip cache purge
|
12 |
|
13 |
RUN python -m unidic download
|