9 lines
645 B
Docker
9 lines
645 B
Docker
FROM scratch as runner
|
|
COPY --chmod=0755 --from=localhost/notwa-util /nu/busybox /bin/busybox
|
|
COPY --chmod=0755 --from=localhost/cosmo-all /cosmopolitan/build/bootstrap/ape.elf /bin/ape
|
|
COPY --chmod=0755 --from=localhost/cosmo-all /usr/local/bin/redbean-demo.* /bin/
|
|
COPY --chmod=0755 --from=localhost/cosmo-all /usr/local/bin/redbean-original.* /bin/
|
|
COPY --chmod=0755 --from=localhost/cosmo-all /usr/local/bin/redbean-static.* /bin/
|
|
COPY --chmod=0755 --from=localhost/cosmo-all /usr/local/bin/redbean-unsecure.* /bin/
|
|
COPY --chmod=0755 --from=localhost/cosmo-all /usr/local/bin/redbean.* /bin/
|
|
ENTRYPOINT ["/bin/ape", "/bin/redbean-demo.com"]
|