cloudflare/pint

Public

mirrored from https://github.com/cloudflare/pintAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
main

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Dockerfile.amd64

8lines · modecode

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