cloudflare/pint
Publicmirrored from https://github.com/cloudflare/pintAvailable
Dockerfile.amd64
8lines · modecode
| 1 | # This Dockerfile is used by goreleaser when releasing a new version. |
| 2 | FROM debian:stable-20260610@sha256:fa0ca9c113cbc97c1e2eb40d7012b43bdfb70abe4218229c366de911c5b32cd2 |
| 3 | RUN apt-get update --yes && \ |
| 4 | apt-get install --no-install-recommends --yes git ca-certificates && \ |
| 5 | rm -rf /var/lib/apt/lists/* |
| 6 | COPY pint-linux-amd64 /usr/local/bin/pint |
| 7 | WORKDIR /code |
| 8 | CMD ["/usr/local/bin/pint"] |
| 9 | |