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.
32 lines
672 B
32 lines
672 B
# Build go-neb
|
|
FROM golang:1.10-alpine as builder
|
|
|
|
COPY . /tmp/go-neb
|
|
WORKDIR /tmp/go-neb
|
|
RUN apk add --no-cache -t build-deps git gcc musl-dev go \
|
|
&& go get -u github.com/constabulary/gb/... \
|
|
&& gb vendor restore \
|
|
&& gb build -f github.com/matrix-org/go-neb
|
|
|
|
|
|
# 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/"]
|