first commit
Some checks failed
Gitea Actions Demo / build-and-push-image (push) Failing after 30s

This commit is contained in:
2026-05-07 22:15:24 -05:00
commit ef030ea421
16 changed files with 296 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM git.tesses.org/tesses50/crosslang-withshell:latest AS build
COPY . /src
WORKDIR /src
RUN crosslang build
FROM git.tesses.org/tesses50/crosslang:latest
COPY --from=build /src/bin/myfirstkube-1.0.0.0-prod.crvm /mykube.crvm
ENTRYPOINT ["/usr/bin/env", "crossvm", "/mykube.crvm"]