Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -64,9 +64,10 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
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 |
COPY ./train.sh /train.sh
|
71 |
RUN chmod +x /train.sh
|
72 |
# USER 1000
|
|
|
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
|
73 |
# USER 1000
|