From 30d818f6cd4eee2d2c13cdd0276528799e9c5d7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9gory=20Planchat?= Date: Wed, 11 Dec 2024 11:24:12 +0100 Subject: [PATCH] feat: added COPY --from to enable builder pattern --- src/Dockerfile/CopyFrom.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/Dockerfile/CopyFrom.php diff --git a/src/Dockerfile/CopyFrom.php b/src/Dockerfile/CopyFrom.php new file mode 100644 index 0000000..8f596b1 --- /dev/null +++ b/src/Dockerfile/CopyFrom.php @@ -0,0 +1,20 @@ +from, $this->sourcePath, $this->destinationPath); + } +}