2020-02-29 21:05:00 +00:00
|
|
|
FROM xena/go:1.14 AS build
|
2019-01-12 02:36:34 +00:00
|
|
|
ENV GOPROXY https://cache.greedo.xeserv.us
|
2018-10-19 13:58:02 +00:00
|
|
|
COPY . /site
|
|
|
|
WORKDIR /site
|
2019-05-22 01:47:09 +00:00
|
|
|
RUN CGO_ENABLED=0 go test -v ./...
|
|
|
|
RUN CGO_ENABLED=0 GOBIN=/root go install -v ./cmd/site
|
2018-07-01 20:20:01 +00:00
|
|
|
|
|
|
|
FROM xena/alpine
|
2017-12-13 19:28:48 +00:00
|
|
|
EXPOSE 5000
|
2018-12-10 16:14:00 +00:00
|
|
|
WORKDIR /site
|
|
|
|
COPY --from=build /root/site .
|
2018-08-13 16:58:13 +00:00
|
|
|
COPY ./static /site/static
|
2018-07-01 20:20:01 +00:00
|
|
|
COPY ./templates /site/templates
|
|
|
|
COPY ./blog /site/blog
|
2019-05-22 01:47:09 +00:00
|
|
|
COPY ./talks /site/talks
|
2019-11-01 21:53:23 +00:00
|
|
|
COPY ./gallery /site/gallery
|
2018-07-01 20:36:09 +00:00
|
|
|
COPY ./css /site/css
|
2020-03-18 20:45:55 +00:00
|
|
|
COPY ./signalboost.dhall /site/signalboost.dhall
|
2019-03-27 14:31:57 +00:00
|
|
|
HEALTHCHECK CMD wget --spider http://127.0.0.1:5000/.within/health || exit 1
|
2018-12-10 16:14:00 +00:00
|
|
|
CMD ./site
|