diff --git a/build-all b/build-all index a41bd53..f26568c 100755 --- a/build-all +++ b/build-all @@ -47,6 +47,7 @@ build() { : \ `# phase 3` \ && build cosmo-all \ && build cosmo-dist \ + && build rescue \ `# phase 4` \ && build cosmo-base \ `# phase 5` \ diff --git a/rescue/Dockerfile b/rescue/Dockerfile new file mode 100644 index 0000000..de080ae --- /dev/null +++ b/rescue/Dockerfile @@ -0,0 +1,4 @@ +FROM scratch +COPY --chmod=0755 --from=localhost/notwa-util /nu/busybox /bin/busybox +COPY --chmod=0755 --from=localhost/cosmo-bootstrap /usr/bin/ape /bin/ape +ENTRYPOINT ["/bin/busybox"]