zhuwq0 commited on
Commit
a0c9d3d
·
1 Parent(s): 5860d92
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -9,11 +9,10 @@ FROM tensorflow/tensorflow
9
  RUN pip install tqdm obspy pandas
10
  RUN pip install uvicorn fastapi kafka-python
11
 
12
- RUN apt update && apt install git -y
13
- RUN git lfs install && git lfs pull
14
-
15
  WORKDIR /opt
16
 
 
 
17
  # Copy files
18
  COPY phasenet /opt/phasenet
19
  COPY model /opt/model
 
9
  RUN pip install tqdm obspy pandas
10
  RUN pip install uvicorn fastapi kafka-python
11
 
 
 
 
12
  WORKDIR /opt
13
 
14
+ RUN wget https://github.com/AI4EPS/models/releases/download/phasenet-2018/model.tar && tar -xvf model.tar && rm model.tar
15
+
16
  # Copy files
17
  COPY phasenet /opt/phasenet
18
  COPY model /opt/model