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

  1. FROM alpine:3.6
  2. ENV BIND_ADDRESS=:4050 DATABASE_TYPE=sqlite3 DATABASE_URL=/data/go-neb.db?_busy_timeout=5000
  3. COPY bin/go-neb /go-neb
  4. VOLUME /data
  5. EXPOSE 4050
  6. ENTRYPOINT ["/go-neb"]