updated for new git locationupdated for new git location

This commit is contained in:
2020-02-04 23:55:31 -08:00
parent bad43a1eba
commit c38450665b
10 changed files with 22 additions and 22 deletions

View File

@@ -1,6 +1,6 @@
FROM golang:1.13 as builder
WORKDIR /go/src/github.com/sneak/feta
WORKDIR /go/src/git.eeqj.de/sneak/feta
COPY . .
#RUN make lint && make build
@@ -14,7 +14,7 @@ RUN tar cvfz go-src.tgz src && du -sh *
FROM alpine
COPY --from=builder /go/src/github.com/sneak/feta/feta /bin/feta
COPY --from=builder /go/src/git.eeqj.de/sneak/feta/feta /bin/feta
# put the source in there too for safekeeping
COPY --from=builder /go/go-src.tgz /usr/local/src/go-src.tgz