mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 03:20:27 +00:00
21 lines
698 B
Docker
21 lines
698 B
Docker
FROM node:alpine AS assetbuilder
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
COPY gulpfile.js ./
|
|
COPY assets/ ./assets/
|
|
RUN npm install && NODE_ENV=production ./node_modules/gulp/bin/gulp.js
|
|
|
|
FROM golang:latest AS binarybuilder
|
|
WORKDIR /go/src/github.com/usefathom/fathom
|
|
COPY . /go/src/github.com/usefathom/fathom
|
|
COPY --from=assetbuilder /app/assets/build ./assets/build
|
|
RUN go get -u github.com/gobuffalo/packr/... && make docker
|
|
|
|
FROM alpine:latest
|
|
EXPOSE 8080
|
|
HEALTHCHECK --retries=10 CMD ["wget", "-qO-", "http://localhost:8080/health"]
|
|
RUN apk add --update --no-cache bash ca-certificates
|
|
WORKDIR /app
|
|
COPY --from=binarybuilder /go/src/github.com/usefathom/fathom/fathom .
|
|
CMD ["./fathom", "server"]
|