adds CI config and dockerfile
This commit is contained in:
parent
8d207f8190
commit
e3a7f53412
|
@ -0,0 +1,9 @@
|
|||
kind: pipeline
|
||||
name: default
|
||||
|
||||
pipeline:
|
||||
build:
|
||||
image: plugins/docker
|
||||
commands:
|
||||
- >
|
||||
docker build .
|
|
@ -0,0 +1,24 @@
|
|||
FROM golang:1.13 as builder
|
||||
|
||||
WORKDIR /go/src/git.eeqj.de/datavibe/api
|
||||
COPY . .
|
||||
|
||||
#RUN make lint && make build
|
||||
RUN make build
|
||||
|
||||
WORKDIR /go
|
||||
RUN tar cvfz go-src.tgz src && du -sh *
|
||||
|
||||
# this container doesn't do anything except hold the build artifact
|
||||
# and make sure it compiles.
|
||||
|
||||
FROM alpine
|
||||
|
||||
COPY --from=builder /go/src/git.eeqj.de/datavibe/api/api /bin/api
|
||||
|
||||
# put the source in there too for safekeeping
|
||||
COPY --from=builder /go/go-src.tgz /usr/local/src/go-src.tgz
|
||||
|
||||
CMD /bin/api
|
||||
|
||||
# FIXME add testing
|
Loading…
Reference in New Issue