sip-recorder/Dockerfile

10 lines
117 B
Docker
Raw Normal View History

2021-12-12 11:40:01 +00:00
FROM alpine:3.15
2019-01-01 22:34:16 +00:00
RUN apk -U add asterisk
2019-02-06 20:38:40 +00:00
COPY root/ /
2019-01-01 22:34:16 +00:00
VOLUME /recordings
2019-02-06 20:38:40 +00:00
ENTRYPOINT ["/bin/sh", "/app/start.sh"]