diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2022-09-15 05:35:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-15 05:35:05 +0000 |
commit | 18189ab698121d5bd21f190fd4669a5e87ed9dde (patch) | |
tree | e4618234d32e6bd1cae38af7c2e573e64e4225c7 /Containerfile | |
parent | Fully qualify clap_complete::generate (diff) | |
parent | Build container images using podman (diff) | |
download | miniserve-18189ab698121d5bd21f190fd4669a5e87ed9dde.tar.gz miniserve-18189ab698121d5bd21f190fd4669a5e87ed9dde.zip |
Merge pull request #904 from svenstaro/podman-images
Build container images using podman
Diffstat (limited to '')
-rw-r--r-- | Containerfile | 3 | ||||
-rw-r--r-- | Containerfile.alpine | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..3f2d866 --- /dev/null +++ b/Containerfile @@ -0,0 +1,3 @@ +FROM docker.io/ubuntu +COPY --chmod=755 miniserve /app/ +ENTRYPOINT ["/app/miniserve"] diff --git a/Containerfile.alpine b/Containerfile.alpine new file mode 100644 index 0000000..d297f83 --- /dev/null +++ b/Containerfile.alpine @@ -0,0 +1,3 @@ +FROM docker.io/alpine +COPY --chmod=755 miniserve /app/ +ENTRYPOINT ["/app/miniserve"] |