aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2019-05-21 21:47:09 -0400
committerGitHub <noreply@github.com>2019-05-21 21:47:09 -0400
commitd64c666255665c5e03812c47e70d6edb46432510 (patch)
tree1dd44e77f7d57a5a52ccfa0fe96fc073cb3da2fe /Dockerfile
parenta275fc754b4c82a81ba06f0f3cbddb39946db1ac (diff)
downloadxesite-d64c666255665c5e03812c47e70d6edb46432510.tar.xz
xesite-d64c666255665c5e03812c47e70d6edb46432510.zip
add talks support (#40)
* add talks support * gosimplify
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 653a92c..f57f9c3 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,8 +2,8 @@ FROM xena/go:1.12.1 AS build
ENV GOPROXY https://cache.greedo.xeserv.us
COPY . /site
WORKDIR /site
-RUN CGO_ENABLED=0 go test ./...
-RUN CGO_ENABLED=0 GOBIN=/root go install ./cmd/site
+RUN CGO_ENABLED=0 go test -v ./...
+RUN CGO_ENABLED=0 GOBIN=/root go install -v ./cmd/site
FROM xena/alpine
EXPOSE 5000
@@ -13,6 +13,7 @@ COPY --from=build /root/site .
COPY ./static /site/static
COPY ./templates /site/templates
COPY ./blog /site/blog
+COPY ./talks /site/talks
COPY ./css /site/css
COPY ./app /app
COPY ./app.json .