Update Dockerfile
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
|
@@ -32,8 +32,8 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins
|
|
| 32 |
git && \
|
| 33 |
rm -rf /var/lib/apt/lists/*
|
| 34 |
|
| 35 |
-
RUN git clone https://github.com/lee-ny/teaching_arithmetic.git /teaching_arithmetic
|
| 36 |
-
RUN chmod +x /teaching_arithmetic
|
| 37 |
# Install conda
|
| 38 |
# translating Docker's TARGETPLATFORM into mamba arches
|
| 39 |
RUN case ${TARGETPLATFORM} in \
|
|
@@ -59,7 +59,6 @@ COPY ./requirements.txt requirements.txt
|
|
| 59 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 60 |
|
| 61 |
#COPY --chown=user teaching_arithmetic /teaching_arithmetic
|
| 62 |
-
RUN cd teaching_arithmetic && pip install -e .
|
| 63 |
#COPY --chown=user . /app
|
| 64 |
COPY . /app
|
| 65 |
|
|
|
|
| 32 |
git && \
|
| 33 |
rm -rf /var/lib/apt/lists/*
|
| 34 |
|
| 35 |
+
RUN git clone https://github.com/lee-ny/teaching_arithmetic.git /teaching_arithmetic && cd teaching_arithmetic && pip install -e .
|
| 36 |
+
#RUN chmod +x /teaching_arithmetic
|
| 37 |
# Install conda
|
| 38 |
# translating Docker's TARGETPLATFORM into mamba arches
|
| 39 |
RUN case ${TARGETPLATFORM} in \
|
|
|
|
| 59 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 60 |
|
| 61 |
#COPY --chown=user teaching_arithmetic /teaching_arithmetic
|
|
|
|
| 62 |
#COPY --chown=user . /app
|
| 63 |
COPY . /app
|
| 64 |
|