Update Dockerfile
Browse files- Dockerfile +2 -4
Dockerfile
CHANGED
@@ -62,12 +62,10 @@ 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 out
|
66 |
-
RUN mkdir out/addition_train
|
67 |
COPY ./out /out
|
68 |
RUN chmod +x /out
|
69 |
-
|
70 |
-
|
71 |
COPY ./train.sh /train.sh
|
72 |
RUN chmod +x /train.sh
|
73 |
# USER 1000
|
|
|
62 |
#COPY --chown=user teaching_arithmetic /teaching_arithmetic
|
63 |
#COPY --chown=user . /app
|
64 |
COPY . /app
|
|
|
|
|
65 |
COPY ./out /out
|
66 |
RUN chmod +x /out
|
67 |
+
COPY ./out/addition_train /out/
|
68 |
+
RUN chmod +x /out/addition_train
|
69 |
COPY ./train.sh /train.sh
|
70 |
RUN chmod +x /train.sh
|
71 |
# USER 1000
|