Initial version
This commit is contained in:
commit
19a726a375
2 changed files with 25 additions and 0 deletions
25
Dockerfile
Normal file
25
Dockerfile
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
FROM debian:12 AS builder
|
||||||
|
|
||||||
|
RUN true \
|
||||||
|
&& apt update \
|
||||||
|
&& apt install -y autoconf build-essential doxygen git \
|
||||||
|
&& true
|
||||||
|
|
||||||
|
RUN true \
|
||||||
|
&& git clone --depth 1 --branch 6.4.1 https://github.com/eventphone/yate.git \
|
||||||
|
&& true
|
||||||
|
|
||||||
|
RUN true \
|
||||||
|
&& cd yate \
|
||||||
|
&& ./autogen.sh \
|
||||||
|
&& ./configure --prefix=/opt/yate \
|
||||||
|
&& make \
|
||||||
|
&& make apidocs
|
||||||
|
|
||||||
|
RUN true \
|
||||||
|
&& cd yate \
|
||||||
|
&& make install
|
||||||
|
|
||||||
|
FROM debian:12
|
||||||
|
|
||||||
|
COPY --from=builder /opt/yate /opt/yate
|
0
README.md
Normal file
0
README.md
Normal file
Loading…
Add table
Add a link
Reference in a new issue