cloudflare/pint

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.18.1

Branches

Tags

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

Clone

HTTPS

Download ZIP

Dockerfile

13lines · modecode

1FROM golang:1.18.2-alpine
2COPY . /src
3WORKDIR /src
4RUN apk add make git
5RUN make
6
7FROM debian:stable
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