cloudflare/pint

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
41f437789877e1c4101a43d8bac1e052dae0448b

Branches

Tags

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

Clone

HTTPS

Download ZIP

Dockerfile

12lines · modecode

1FROM golang:1.16.3
2COPY . /src
3WORKDIR /src
4RUN go build ./cmd/pint
5
6FROM debian:stable
7RUN apt-get update --yes && \
8 apt-get install --no-install-recommends --yes git && \
9 rm -rf /var/lib/apt/lists/*
10COPY --from=0 /src/pint /usr/local/bin/pint
11WORKDIR /code
12CMD ["/usr/local/bin/pint"]
13