diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2022-11-08 09:33:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-08 09:33:57 +0000 |
commit | 347662df77ff5a30a75e03cbfb57617b010f5f3e (patch) | |
tree | 4490a436f6b845e6dffc71a26bc11acce7f042a9 | |
parent | Merge pull request #940 from svenstaro/dependabot/cargo/clap_complete-4.0.3 (diff) | |
parent | Use gcr.io/distroless/cc as a glibc-based container instead of ubuntu (diff) | |
download | miniserve-347662df77ff5a30a75e03cbfb57617b010f5f3e.tar.gz miniserve-347662df77ff5a30a75e03cbfb57617b010f5f3e.zip |
Merge pull request #955 from svenstaro/use-distroless-image
Use gcr.io/distroless/cc as a glibc-based container instead of ubuntu
-rw-r--r-- | Containerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Containerfile b/Containerfile index 3f2d866..42b3aa5 100644 --- a/Containerfile +++ b/Containerfile @@ -1,3 +1,3 @@ -FROM docker.io/ubuntu +FROM gcr.io/distroless/cc COPY --chmod=755 miniserve /app/ ENTRYPOINT ["/app/miniserve"] |