mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-11-10 17:26:10 +08:00
3143bd9e29
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
14 lines
353 B
Docker
14 lines
353 B
Docker
# syntax = docker/dockerfile:1.4
|
|
|
|
FROM alpine:3.17.1@sha256:f271e74b17ced29b915d351685fd4644785c6d1559dd1f2d4189a5e851ef753a as RUN
|
|
|
|
#RUN --mount=type=cache,target=/var/cache/apk \
|
|
# apk update \
|
|
# && apk add ca-certificates \
|
|
# && update-ca-certificates
|
|
|
|
COPY dnscontrol /usr/local/bin/
|
|
|
|
WORKDIR /dns
|
|
|
|
ENTRYPOINT ["/usr/local/bin/dnscontrol"]
|