diff --git a/Dockerfile b/Dockerfile index f3d0220..73acd87 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,9 @@ FROM scratch AS rootfs # Install wp-cli COPY --from=wp-cli ["/usr/local/bin/wp", "/usr/local/bin/wp-cli"] +# Install wp-utils +COPY ["./src/wp-utils/", "/usr/local/bin/"] + # Overlay COPY ["./rootfs/", "/"] diff --git a/rootfs/usr/local/bin/wp-apply-patch b/src/wp-utils/wp-apply-patch similarity index 100% rename from rootfs/usr/local/bin/wp-apply-patch rename to src/wp-utils/wp-apply-patch diff --git a/rootfs/usr/local/bin/wp-plugin b/src/wp-utils/wp-plugin similarity index 100% rename from rootfs/usr/local/bin/wp-plugin rename to src/wp-utils/wp-plugin diff --git a/rootfs/usr/local/bin/wp-theme b/src/wp-utils/wp-theme similarity index 100% rename from rootfs/usr/local/bin/wp-theme rename to src/wp-utils/wp-theme