drrobot9 commited on
Commit
705b84e
·
verified ·
1 Parent(s): 7c2c65d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -4
Dockerfile CHANGED
@@ -19,12 +19,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
19
  && apt-get clean && rm -rf /var/lib/apt/lists/*
20
 
21
 
22
- COPY requirements.txt .
23
- RUN pip install --no-cache-dir -r requirements.txt
24
 
 
25
 
26
- RUN pip install --no-cache-dir \
27
- "yarngpt @ git+https://github.com/saheedniyi02/yarngpt.git"
 
28
 
29
 
30
  RUN wget -q \
 
19
  && apt-get clean && rm -rf /var/lib/apt/lists/*
20
 
21
 
22
+ RUN git clone https://github.com/saheedniyi02/yarngpt.git /app/yarngpt
23
+
24
 
25
+ ENV PYTHONPATH="/app/yarngpt:${PYTHONPATH}"
26
 
27
+
28
+ COPY requirements.txt .
29
+ RUN pip install --no-cache-dir -r requirements.txt
30
 
31
 
32
  RUN wget -q \