include updates from other repo

This commit is contained in:
2019-10-25 09:25:17 -07:00
parent 2e58070467
commit 735118c87c
3 changed files with 29 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
FROM golang:1.13 as builder
WORKDIR /go/src/github.com/sneak/pooteeweet
WORKDIR /go/src/github.com/sneak/merp
COPY . .
RUN go get -v && make build
@@ -8,8 +8,11 @@ RUN go get -v && make build
FROM alpine
COPY --from=builder /go/src/github.com/sneak/pooteeweet/pooteeweet /bin/pooteeweet
COPY --from=builder /go/src/github.com/sneak/merp/merp /bin/merp
CMD /bin/pooteeweet
# put the source in there too for safekeeping
COPY --from=builder /go/src /usr/local/src/go
CMD /bin/merp
# FIXME add testing