File: Dockerfile

package info (click to toggle)
golang-github-adxgun-registry-auth 0.0~git20200730.8cde180-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,080 kB
  • sloc: sh: 5; makefile: 4
file content (7 lines) | stat: -rw-r--r-- 181 bytes parent folder | download
1
2
3
4
5
6
7
FROM alpine:3.2
RUN apk update && apk add --no-cache ca-certificates
RUN apk add build-base
ADD . /app
WORKDIR /app
RUN chmod +x /app/example-auth
ENTRYPOINT [ "/app/example-auth" ]