cloudflare/pint

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.83.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

Dockerfile

13lines · modecode

1FROM golang:1.26.3-alpine@sha256:91eda9776261207ea25fd06b5b7fed8d397dd2c0a283e77f2ab6e91bfa71079d
2COPY . /src
3WORKDIR /src
4RUN apk add make git
5RUN make
6
7FROM debian:stable-20260505@sha256:23759e4f84483a4a2b312eb72e0aa68ad3526344fb2e7caa2eb64846b0d7e142
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