mirror of
https://github.com/mailscope/kumomta.git
synced 2026-09-06 02:28:56 +00:00
A downside of pulling in rocksdb is that it is a pretty big C++ library and musl/alpine don't really get on with it. Switch to using the latest ubuntu LTS image as our base.
9 lines
126 B
Bash
Executable File
9 lines
126 B
Bash
Executable File
#!/bin/sh
|
|
set -xe
|
|
|
|
KUMO_POLICY="${KUMO_POLICY:-/config/policy.lua}"
|
|
|
|
exec /app/kumod --policy "${KUMO_POLICY}" --user kumod
|
|
|
|
|