mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
Add Dockerfile
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal file
@ -0,0 +1,13 @@
|
||||
FROM golang:1.9 AS build-env
|
||||
WORKDIR /go/src/github.com/StackExchange/dnscontrol
|
||||
ADD . .
|
||||
RUN go install .
|
||||
RUN dnscontrol version
|
||||
|
||||
FROM ubuntu:xenial
|
||||
COPY --from=build-env /go/bin/dnscontrol /usr/local/bin
|
||||
WORKDIR /dns
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y ca-certificates
|
||||
RUN dnscontrol version
|
||||
CMD dnscontrol
|
Reference in New Issue
Block a user