mirror of https://github.com/matrix-org/go-neb.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
814 B
37 lines
814 B
# Build go-neb
|
|
FROM golang:1.11-alpine as builder
|
|
|
|
RUN apk add --no-cache -t build-deps git gcc musl-dev go
|
|
|
|
COPY . /tmp/go-neb
|
|
WORKDIR /tmp/go-neb
|
|
RUN go get -u github.com/constabulary/gb/... \
|
|
&& go get github.com/golang/lint/golint \
|
|
&& go get github.com/fzipp/gocyclo \
|
|
&& gb vendor restore \
|
|
&& gb build -f github.com/matrix-org/go-neb
|
|
|
|
# Ensures we're lint-free
|
|
RUN /tmp/go-neb/hooks/pre-commit
|
|
|
|
# Run go-neb
|
|
FROM alpine:3.7
|
|
|
|
ENV BIND_ADDRESS=:4050 \
|
|
DATABASE_TYPE=sqlite3 \
|
|
DATABASE_URL=/data/go-neb.db?_busy_timeout=5000 \
|
|
UID=1337 \
|
|
GID=1337
|
|
|
|
COPY --from=builder /tmp/go-neb/bin/go-neb /usr/local/bin/go-neb
|
|
RUN apk add --no-cache \
|
|
ca-certificates \
|
|
su-exec \
|
|
s6
|
|
|
|
VOLUME /data
|
|
EXPOSE 4050
|
|
|
|
COPY docker/root /
|
|
|
|
ENTRYPOINT ["/bin/s6-svscan", "/etc/s6.d/"]
|