From a019f1154b04910c8ae99750c7574e654316f6b7 Mon Sep 17 00:00:00 2001 From: Jack Zampolin Date: Thu, 12 Jul 2018 13:47:48 -0700 Subject: [PATCH 1/3] Add CODEOWNERS --- .github/CODEOWNERS | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..0a374581 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,4 @@ +# CODEOWNERS: https://help.github.com/articles/about-codeowners/ + +# Primary repo maintainers +* @alexanderbez @AlexeyAkhunov @jackzampolin From 186048cee0ea591fd9c743fd693a8fe6dfa8d522 Mon Sep 17 00:00:00 2001 From: Jack Zampolin Date: Thu, 12 Jul 2018 13:53:09 -0700 Subject: [PATCH 2/3] Add ISSUE_TEMPLATES --- .github/ISSUE_TEMPLATE/bug-report.md | 18 ++++++++++++++++++ .github/ISSUE_TEMPLATE/feature-request.md | 15 +++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/feature-request.md diff --git a/.github/ISSUE_TEMPLATE/bug-report.md b/.github/ISSUE_TEMPLATE/bug-report.md new file mode 100644 index 00000000..34150f70 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.md @@ -0,0 +1,18 @@ +--- +name: Bug Report +about: create a bug report +--- + +__System info:__ [Include Ethermint commit, operating system name, and other relevant details] + +__Steps to reproduce:__ + +1. [First Step] +2. [Second Step] +3. [and so on...] + +__Expected behavior:__ [What you expected to happen] + +__Actual behavior:__ [What actually happened] + +__Additional info:__ [Include gist of relevant config, logs, etc.] diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 00000000..8095f8b9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,15 @@ +--- +name: Feature request +about: Opening a feature request kicks off a discussion + +--- + +__Proposal:__ [Description of the feature] + +__Current behavior:__ [What currently happens] + +__Desired behavior:__ [What you would like to happen] + +__Use case:__ [Why is this important (helps with prioritizing requests)] + +Requests may be closed if we're not actively planning to work on them. From c8f70d04452c3f238d240d6b148cd6119f99214d Mon Sep 17 00:00:00 2001 From: Jack Zampolin Date: Thu, 12 Jul 2018 16:22:19 -0700 Subject: [PATCH 3/3] Add Dockerfile --- Dockerfile | 29 +++++++++++++++++++++++++++++ Makefile | 7 +++++++ 2 files changed, 36 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..069a6493 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,29 @@ +FROM golang:alpine AS build-env + +# Set up dependencies +ENV PACKAGES make git curl build-base + +# Set working directory for the build +WORKDIR /go/src/github.com/cosmos/ethermint + +# Install dependencies +RUN apk add --update $PACKAGES + +# Add source files +COPY . . + +# Make the binary +RUN make update-tools get-vendor-deps build + +# Final image +FROM alpine:edge + +# Install ca-certificates +RUN apk add --update ca-certificates +WORKDIR /root + +# Copy over binaries from the build-env +COPY --from=build-env /go/src/github.com/cosmos/ethermint/build/ethermint /usr/bin/ethermint + +# Run ethermint by default +CMD ["ethermint"] diff --git a/Makefile b/Makefile index 66325b4e..8510e60c 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,8 @@ PACKAGES=$(shell go list ./... | grep -v '/vendor/') COMMIT_HASH := $(shell git rev-parse --short HEAD) BUILD_FLAGS = -tags netgo -ldflags "-X github.com/cosmos/ethermint/version.GitCommit=${COMMIT_HASH}" +DOCKER_TAG = unstable +DOCKER_IMAGE = tendermint/ethermint DEP = github.com/golang/dep/cmd/dep GOLINT = github.com/tendermint/lint/golint @@ -108,4 +110,9 @@ godocs: @echo "--> Wait a few seconds and visit http://localhost:6060/pkg/github.com/cosmos/ethermint" godoc -http=:6060 +docker: + docker build -t ${DOCKER_IMAGE}:${DOCKER_TAG} . + docker tag ${DOCKER_IMAGE}:${DOCKER_TAG} ${DOCKER_IMAGE}:latest + docker tag ${DOCKER_IMAGE}:${DOCKER_TAG} ${DOCKER_IMAGE}:${COMMIT_HASH} + .PHONY: build install update-tools get-tools get-vendor-deps godocs