Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +1 -6
Dockerfile
CHANGED
@@ -1,14 +1,9 @@
|
|
1 |
-
FROM lfoppiano/grobid:latest
|
2 |
USER root
|
3 |
|
4 |
RUN apt-get update && \
|
5 |
apt-get -y --no-install-recommends install unzip wget git git-lfs
|
6 |
|
7 |
-
# We need to replace the service with the sources so that we can run ./gradlew
|
8 |
-
RUN rm -rf /opt/grobid
|
9 |
-
RUN git clone --depth 1 https://github.com/kermitt2/grobid /opt/grobid
|
10 |
-
|
11 |
-
|
12 |
RUN mkdir -m 777 -p /opt/grobid/grobid-home/tmp
|
13 |
RUN mkdir -m 777 -p /opt/grobid/logs
|
14 |
RUN chmod -R 777 /opt/grobid
|
|
|
1 |
+
FROM lfoppiano/grobid-evaluation:latest
|
2 |
USER root
|
3 |
|
4 |
RUN apt-get update && \
|
5 |
apt-get -y --no-install-recommends install unzip wget git git-lfs
|
6 |
|
|
|
|
|
|
|
|
|
|
|
7 |
RUN mkdir -m 777 -p /opt/grobid/grobid-home/tmp
|
8 |
RUN mkdir -m 777 -p /opt/grobid/logs
|
9 |
RUN chmod -R 777 /opt/grobid
|