Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -14,11 +14,10 @@ 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 /teaching_arithmetic
|
18 |
#&& cd teaching_arithmetic && pip install -e .
|
19 |
|
20 |
COPY --chown=user . /app
|
21 |
-
COPY --chown=user ./teaching_arithmetic /app
|
22 |
|
23 |
#&& cd teaching_arithmetic && pip install -e .
|
24 |
#COPY --chown=user /teaching_arithmetic /app/teaching_arithmetic
|
|
|
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 /app/teaching_arithmetic
|
18 |
#&& cd teaching_arithmetic && pip install -e .
|
19 |
|
20 |
COPY --chown=user . /app
|
|
|
21 |
|
22 |
#&& cd teaching_arithmetic && pip install -e .
|
23 |
#COPY --chown=user /teaching_arithmetic /app/teaching_arithmetic
|