mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-02-21 17:15:35 -07:00
Fix errors in auto-released docker images (#399)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
builds:
|
||||
- binary: acme-dns
|
||||
env:
|
||||
- CGO_ENABLED=1
|
||||
- CGO_ENABLED=0
|
||||
goos:
|
||||
- linux
|
||||
goarch:
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
FROM golang:alpine AS builder
|
||||
LABEL maintainer="joona@kuori.org"
|
||||
|
||||
RUN apk add --update gcc musl-dev git
|
||||
RUN apk add --update git
|
||||
|
||||
ENV GOPATH /tmp/buildcache
|
||||
RUN git clone https://github.com/joohoi/acme-dns /tmp/acme-dns
|
||||
WORKDIR /tmp/acme-dns
|
||||
RUN CGO_ENABLED=1 go build
|
||||
RUN CGO_ENABLED=0 go build
|
||||
|
||||
FROM alpine:latest
|
||||
|
||||
|
||||
Reference in New Issue
Block a user