Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -11,7 +11,8 @@ 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
|
|
|
|
| 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 https://github.com/lee-ny/teaching_arithmetic.git
|
| 15 |
+
# && cd teaching_arithmetic && pip install -e .
|
| 16 |
|
| 17 |
|
| 18 |
COPY --chown=user . /app
|