ScuttleBot
|
1
|
FROM ghcr.io/ergochat/ergo:stable |
|
2
|
|
|
3
|
# Install envsubst (gettext package). |
|
4
|
USER root |
|
5
|
RUN apk add --no-cache gettext |
|
6
|
|
|
7
|
COPY ircd.yaml.tmpl /ergo/ircd.yaml.tmpl |
|
8
|
COPY entrypoint.sh /ergo/entrypoint.sh |
|
9
|
RUN chmod +x /ergo/entrypoint.sh |
|
10
|
|
|
11
|
ENTRYPOINT ["/ergo/entrypoint.sh"] |
|
12
|
|