Skip to content

Commit 064dce3

Browse files
committed
Avoid images beeing copied into cookbook dir
There were images copied loose into cookbook directory instead of cookbook/images
1 parent b7e03c4 commit 064dce3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ RUN mkdir /pandas-cookbook
44
WORKDIR /pandas-cookbook
55
RUN mkdir ./cookbook ./data ./cookbook/images
66

7-
COPY cookbook/* ./cookbook/
8-
COPY cookbook/images/* ./cookbook/images/
7+
COPY cookbook/*.ipynb ./cookbook/
8+
COPY cookbook/images/*.png ./cookbook/images/
99
COPY data/* ./data/
1010

1111
WORKDIR /pandas-cookbook/cookbook/

0 commit comments

Comments
 (0)