-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
FROM ghcr.io/automattic/vip-container-images/alpine:3.21.0@sha256:32cff7c1b6fe35a9f3d0c829a5a29ca80761a19ae63c15c914bf4c03fbf7df66 | ||
FROM ghcr.io/automattic/vip-container-images/helpers:v1@sha256:9f77c3da2ca0394d5846a9fc4195041f59ff5821ea6a7aaa43a08f15d28bf1eb AS helpers | ||
FROM busybox:stable-musl@sha256:0fc05e424940109068f4d6562b699da2563cd8521a35d7b216a5b0c51fb29281 | ||
|
||
COPY setup.sh add-site.sh dev-env-plugin.php wp-config* /dev-tools-orig/ | ||
COPY setup.sh add-site.sh dev-env-plugin.php wp-config* /dev-tools/ | ||
COPY scripts /scripts | ||
COPY --from=helpers /rsync /usr/bin/rsync | ||
COPY --link setup.sh add-site.sh dev-env-plugin.php wp-config* /dev-tools-orig/ | ||
COPY --link setup.sh add-site.sh dev-env-plugin.php wp-config* /dev-tools/ | ||
COPY --link scripts /scripts | ||
|
||
ENTRYPOINT ["/usr/bin/rsync", "-a", "--delete", "/dev-tools-orig/", "/dev-tools/"] |