Quanto segue Dockerfile
contiene quattro COPY
livelli:
COPY README.md ./
COPY package.json ./
COPY gulpfile.js ./
COPY __BUILD_NUMBER ./
Come copiare questi file usando invece un layer? È stato provato quanto segue:
COPY [
"__BUILD_NUMBER ./",
"README.md ./",
"gulpfile ./",
"another_file ./",
]