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.arm64

8lines · modecode

1# This Dockerfile is used by goreleaser when releasing a new version.
2FROM debian:stable-20260505@sha256:23759e4f84483a4a2b312eb72e0aa68ad3526344fb2e7caa2eb64846b0d7e142
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-arm64 /usr/local/bin/pint
7WORKDIR /code
8CMD ["/usr/local/bin/pint"]
9