5 lines
165 B
Docker
5 lines
165 B
Docker
FROM alpine:edge
|
|
RUN apk --update --no-cache add soju
|
|
RUN install -o soju -g soju -d /run/soju
|
|
USER soju
|
|
ENTRYPOINT ["/usr/bin/soju", "-config", "/etc/soju/config"]
|