com3dian commited on
Commit
4310e84
·
verified ·
1 Parent(s): 9f5f62c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -6
Dockerfile CHANGED
@@ -25,12 +25,12 @@ RUN apt-get update && \
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
36
  COPY ./packages.txt /app/packages.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
+ RUN cd /app/grobid-0.8.0
30
+ RUN ./gradlew clean install
31
+ RUN ./gradlew run &
32
+ RUN cd ..
33
+ RUN cd ..
34
 
35
  COPY ./requirements.txt /app/requirements.txt
36
  COPY ./packages.txt /app/packages.txt