meg HF Staff commited on
Commit
3e46726
·
verified ·
1 Parent(s): 0704e76

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -11,9 +11,9 @@ WORKDIR /app
11
  COPY --chown=user ./requirements.txt requirements.txt
12
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
13
 
14
- RUN git clone https://github.com/lee-ny/teaching_arithmetic.git /teaching_arithmetic
15
- COPY --chown=user teaching_arithmetic /teaching_arithmetic
16
- RUN cd teaching_arithmetic
17
  # && cd teaching_arithmetic &&
18
  RUN pip install -e .
19
 
 
11
  COPY --chown=user ./requirements.txt requirements.txt
12
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
13
 
14
+ RUN git clone https://github.com/lee-ny/teaching_arithmetic.git /teaching_arithmetic && cd teaching_arithmetic
15
+ #COPY --chown=user teaching_arithmetic /teaching_arithmetic
16
+ #RUN cd teaching_arithmetic
17
  # && cd teaching_arithmetic &&
18
  RUN pip install -e .
19