update local environment to build the bookish-api

This commit is contained in:
David Lick
2020-05-26 21:31:22 -04:00
parent 4a62fb7c8e
commit ede08baf22
3 changed files with 27 additions and 26 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM golang:latest
WORKDIR /go/src/bookish
COPY . .
RUN go get -d -v ./...
RUN go install -v ./...
CMD ["api"]