Skip to content

Commit

Permalink
OSS Release
Browse files Browse the repository at this point in the history
  • Loading branch information
charith-qubit committed May 17, 2018
1 parent d9549e6 commit b53b4ce
Show file tree
Hide file tree
Showing 40 changed files with 4,705 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.swp
/iris
/vendor
/support/local-conf/certs
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM golang:1.10-alpine as builder
ARG SRC_DIR=/go/src/github.com/qubitdigital/iris
RUN apk --no-cache add --update make
ADD . $SRC_DIR
WORKDIR $SRC_DIR
RUN make container

FROM scratch
COPY --from=builder /go/src/github.com/qubitdigital/iris/iris /iris
ENV GRPC_GO_LOG_SEVERITY_LEVEL WARNING
ENTRYPOINT ["/iris"]


Loading

0 comments on commit b53b4ce

Please sign in to comment.