boilerplate only

This commit is contained in:
2019-10-24 03:38:16 -07:00
commit 9d9e344546
5 changed files with 120 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM golang:1.13 as builder
WORKDIR /go/src/github.com/sneak/fediverse-archive
COPY . .
RUN go get -v && make build
# this container doesn't do anything except hold the build artifact
# and make sure it compiles.
FROM alpine
COPY --from=builder /go/src/github.com/sneak/fediverse-archive/fediverse-archive /bin/fediverse-archive
CMD /bin/fediverse-archive
# FIXME add testing