meg HF Staff commited on
Commit
714cfe7
·
verified ·
1 Parent(s): 3216b45

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -11,7 +11,7 @@ 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 && cd teaching_arithmetic && pip install -e .
15
 
16
 
17
  COPY --chown=user . /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 -b main https://github.com/lee-ny/teaching_arithmetic.git /teaching_arithmetic && cd teaching_arithmetic && pip install -e .
15
 
16
 
17
  COPY --chown=user . /app