12 lines
246 B
Docker
12 lines
246 B
Docker
FROM debian:bookworm
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y baresip mosquitto-clients alsa-utils curl bash espeak jq && \
|
|
apt-get clean
|
|
|
|
COPY run.sh /run.sh
|
|
COPY baresip.conf.j2 /baresip.conf.j2
|
|
|
|
RUN chmod +x /run.sh
|
|
|
|
CMD ["/run.sh"] |