5 lines
288 B
Docker
5 lines
288 B
Docker
FROM scratch AS runner
|
|
COPY --chmod=0755 --from=localhost/notwa-util /nu/busybox /bin/busybox
|
|
COPY --chmod=0755 --from=localhost/cosmo-dist /cosmopolitan/bin/ape /bin/
|
|
COPY --chmod=0755 --from=localhost/cosmo-dist /cosmopolitan/bin/make.com /bin/
|
|
ENTRYPOINT ["/bin/ape", "/bin/make.com"]
|