I want to combine 2 COPY in one line with other source and destinations.
My current code:
COPY ./file1.txt /first/path/
COPY ./file2.txt /second/path/
I want combine these lines in one line. I tried with an array, but it's not correct:
COPY ["./file1.txt", "/first/path/", "./file2.txt", "/second/path/"]