initial, broken

This commit is contained in:
2020-03-24 13:32:35 -07:00
parent 471ac01bbd
commit 9ac46046cb
12 changed files with 421 additions and 0 deletions

24
Dockerfile Normal file
View File

@@ -0,0 +1,24 @@
FROM golang:1.13 as builder
WORKDIR /go/src/git.eeqj.de/sneak/hntransparencylog
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/sneak/hntransparencylog/server /bin/server
# put the source in there too for safekeeping
COPY --from=builder /go/go-src.tgz /usr/local/src/go-src.tgz
CMD /bin/server
# FIXME add testing