Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -25,10 +25,11 @@ RUN apt-get update && \
|
|
25 |
WORKDIR /app
|
26 |
|
27 |
COPY ./0.8.0.zip /app/0.8.0.zip
|
28 |
-
RUN unzip 0.8.0.zip && \
|
29 |
-
cd /grobid-0.8.0 && \
|
30 |
./gradlew clean install && \
|
31 |
./gradlew run && \
|
|
|
32 |
cd ..
|
33 |
|
34 |
COPY ./requirements.txt /app/requirements.txt
|
|
|
25 |
WORKDIR /app
|
26 |
|
27 |
COPY ./0.8.0.zip /app/0.8.0.zip
|
28 |
+
RUN unzip /app/0.8.0.zip && \
|
29 |
+
cd /app/grobid-0.8.0 && \
|
30 |
./gradlew clean install && \
|
31 |
./gradlew run && \
|
32 |
+
cd .. && \
|
33 |
cd ..
|
34 |
|
35 |
COPY ./requirements.txt /app/requirements.txt
|