Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -11,6 +11,8 @@ COPY --chown=user ./requirements.txt /requirements.txt
|
|
11 |
COPY --chown=user ./train.sh /train.sh
|
12 |
RUN chmod +x /train.sh
|
13 |
|
|
|
|
|
14 |
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
|
15 |
RUN git clone https://github.com/lee-ny/teaching_arithmetic.git /teaching_arithmetic
|
16 |
|
|
|
11 |
COPY --chown=user ./train.sh /train.sh
|
12 |
RUN chmod +x /train.sh
|
13 |
|
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 |
|