sip-recorder/Dockerfile

10 lines
116 B
Docker
Raw Normal View History

2019-02-06 20:38:40 +00:00
FROM alpine:3.9
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"]