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

13lines · modecode

1FROM golang:1.26.4-alpine@sha256:f23e8b227fb4493eabe03bede4d5a32d04092da71962f1fb79b5f7d1e6c2a17f
2COPY . /src
3WORKDIR /src
4RUN apk add make git
5RUN make
6
7FROM debian:stable-20260610@sha256:fa0ca9c113cbc97c1e2eb40d7012b43bdfb70abe4218229c366de911c5b32cd2
8RUN apt-get update --yes && \
9 apt-get install --no-install-recommends --yes git ca-certificates && \
10 rm -rf /var/lib/apt/lists/*
11COPY --from=0 /src/pint /usr/local/bin/pint
12WORKDIR /code
13CMD ["/usr/local/bin/pint"]
14