dnscontrol/Dockerfile
David M 68f0de49e2
32-bit binaries are no longer supported. Update CI/CD-related files (#2524)
Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
2023-08-21 13:00:56 -04:00

15 lines
471 B
Docker

# syntax = docker/dockerfile:1.4
FROM alpine:3.18.3@sha256:7144f7bab3d4c2648d7e59409f15ec52a18006a128c733fcff20d3a4a54ba44a 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"]