aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 716512b9022e4b5019f602316639431f68bc074b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM xena/go:1.10 AS build
COPY . /root/go/src/github.com/Xe/site
RUN CGO_ENABLED=0 GOBIN=/root go install github.com/Xe/site/cmd/site

FROM xena/alpine
EXPOSE 5000
RUN apk add --no-cache bash
COPY --from=build /root/site /site/site
COPY ./static /site/static
COPY ./templates /site/templates
COPY ./blog /site/blog
COPY ./css /site/css
COPY ./run.sh /site/run.sh

HEALTHCHECK CMD wget --spider http://127.0.0.1:5000 || exit 1
CMD /site/run.sh