Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -14,7 +14,7 @@ RUN chmod +x /train.sh
|
|
| 14 |
RUN mkdir /app
|
| 15 |
|
| 16 |
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
|
| 17 |
-
RUN git clone https://github.com/lee-ny/teaching_arithmetic.git
|
| 18 |
|
| 19 |
COPY --chown=user . /app
|
| 20 |
#COPY --chown=user /teaching_arithmetic /app
|
|
|
|
| 14 |
RUN mkdir /app
|
| 15 |
|
| 16 |
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
|
| 17 |
+
RUN git clone https://github.com/lee-ny/teaching_arithmetic.git teaching_arithmetic && cd teaching_arithmetic && pip install -e .
|
| 18 |
|
| 19 |
COPY --chown=user . /app
|
| 20 |
#COPY --chown=user /teaching_arithmetic /app
|