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.
10 lines
185 B
10 lines
185 B
FROM alpine:3.6
|
|
|
|
ENV BIND_ADDRESS=:4050 DATABASE_TYPE=sqlite3 DATABASE_URL=/data/go-neb.db?_busy_timeout=5000
|
|
|
|
COPY bin/go-neb /go-neb
|
|
|
|
VOLUME /data
|
|
EXPOSE 4050
|
|
|
|
ENTRYPOINT ["/go-neb"]
|