mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-10 09:12:47 +08:00
277b0a0730
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
14 lines
471 B
Docker
14 lines
471 B
Docker
# syntax = docker/dockerfile:1.4
|
|
|
|
FROM alpine:3.20.1@sha256:b89d9c93e9ed3597455c90a0b88a8bbb5cb7188438f70953fede212a0c4394e0 as RUN
|
|
|
|
# Add runtime dependencies
|
|
# - tzdata: Go time required external dependency eg: TRANSIP and possibly others
|
|
# - ca-certificates: Needed for https to work properly
|
|
RUN apk update && apk add --no-cache tzdata ca-certificates && update-ca-certificates
|
|
|
|
COPY dnscontrol /usr/local/bin/
|
|
|
|
WORKDIR /dns
|
|
|
|
ENTRYPOINT ["/usr/local/bin/dnscontrol"]
|