Compare commits

...

2 Commits

Author SHA1 Message Date
c4ff3a7018
fix(ci): push scope
All checks were successful
continuous-integration/drone/push Build is passing
2022-03-11 11:30:57 +01:00
17f4d13196
fix: remove Dockerfile 2022-03-11 11:30:21 +01:00
2 changed files with 1 additions and 28 deletions

View File

@ -195,4 +195,4 @@ trigger:
event: event:
- push - push
repo: repo:
- volker-raschek/dyndns-client - volker.raschek/dyndns-client

View File

@ -1,27 +0,0 @@
ARG BASE_IMAGE
ARG BUILD_IMAGE
# BUILD
# ===========================================
FROM ${BUILD_IMAGE} AS build
ADD . /workspace
ARG EXECUTABLE
ARG GONOPROXY
ARG GONOSUMDB
ARG GOPRIVATE
ARG GOPROXY
ARG GOSUMDB
ARG VERSION
RUN make bin/linux/amd64/${EXECUTABLE}
# TARGET CONTAINER
# ===========================================
FROM ${BASE_IMAGE}
ARG EXECUTABLE
RUN apk add --update bind-tools
COPY --from=build /workspace/bin/linux/amd64/${EXECUTABLE} /usr/bin/${EXECUTABLE}
ENTRYPOINT [ "/usr/bin/dyndns-client" ]