Update Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
|
@@ -62,11 +62,11 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
| 62 |
#COPY --chown=user teaching_arithmetic /teaching_arithmetic
|
| 63 |
#COPY --chown=user . /app
|
| 64 |
COPY . /app
|
| 65 |
-
RUN mkdir
|
| 66 |
-
RUN mkdir
|
| 67 |
-
COPY
|
| 68 |
RUN chmod +x /out
|
| 69 |
-
COPY
|
| 70 |
RUN chmod +x /out/addition_train
|
| 71 |
COPY ./train.sh /train.sh
|
| 72 |
RUN chmod +x /train.sh
|
|
|
|
| 62 |
#COPY --chown=user teaching_arithmetic /teaching_arithmetic
|
| 63 |
#COPY --chown=user . /app
|
| 64 |
COPY . /app
|
| 65 |
+
RUN mkdir out
|
| 66 |
+
RUN mkdir out/addition_train
|
| 67 |
+
COPY out /out
|
| 68 |
RUN chmod +x /out
|
| 69 |
+
COPY out/addition_train /out/addition_train
|
| 70 |
RUN chmod +x /out/addition_train
|
| 71 |
COPY ./train.sh /train.sh
|
| 72 |
RUN chmod +x /train.sh
|