Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add Docker build files
  • Loading branch information
tdemin committed Nov 21, 2020
1 parent 26fcc06 commit 30a5d40
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .drone.yml
Expand Up @@ -25,3 +25,20 @@ steps:
- curl -sL https://git.io/goreleaser | bash
when:
event: tag
- name: build docker image
image: plugins/docker
settings:
username:
from_secret: username
password:
from_secret: password
repo: registry.git.tdem.in/gmnhg
registry: registry.git.tdem.in
dockerfile: Dockerfile
tags:
- ${DRONE_TAG}
- latest
when:
event:
- tag

23 changes: 23 additions & 0 deletions Dockerfile
@@ -0,0 +1,23 @@
FROM golang:1.15-alpine AS builder

WORKDIR /src

ENV CGO_ENABLED=0
ENV GO111MODULE=on
ENV GOFLAGS="-trimpath -ldflags=-linkmode=external"

RUN apk add --no-cache git gcc musl-dev

COPY . /src/

RUN \
go build -v -o /tmp/gmnhg ./cmd/gmnhg && \
go build -v -o /tmp/md2gmn ./cmd/md2gmn

FROM alpine:3.12 AS runner

LABEL maintainer "Timur Demin <me@tdem.in>"

COPY --from=builder /tmp/gmnhg /tmp/md2gmn /bin/

CMD ["/bin/sh"]

0 comments on commit 30a5d40

Please sign in to comment.