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.
21 lines
603 B
21 lines
603 B
FROM alpine:3.6
|
|
|
|
ENV BIND_ADDRESS=:4050 DATABASE_TYPE=sqlite3 DATABASE_URL=/data/go-neb.db?_busy_timeout=5000
|
|
|
|
COPY . /tmp/go-neb
|
|
WORKDIR /tmp/go-neb
|
|
ENV GOPATH=/tmp/go-neb/vendor/src:/tmp/go-neb/vendor:/tmp/go-neb
|
|
RUN apk add --no-cache -t build-deps git gcc musl-dev go \
|
|
&& go get -u github.com/constabulary/gb/... \
|
|
&& export PATH="/tmp/go-neb/vendor/src/bin:${PATH}" \
|
|
&& gb vendor restore \
|
|
&& gb build -f github.com/matrix-org/go-neb \
|
|
&& mv bin/go-neb /go-neb \
|
|
&& cd / \
|
|
&& rm -rf /tmp/* \
|
|
&& apk del build-deps
|
|
|
|
VOLUME /data
|
|
EXPOSE 4050
|
|
|
|
ENTRYPOINT ["/go-neb"]
|