Skip to content

Commit

Permalink
feat(Images.FreeSwitch): Continue working on getting FreeSwitch insta…
Browse files Browse the repository at this point in the history
…lled
  • Loading branch information
EntraptaJ committed Feb 15, 2024
1 parent aee8c56 commit 0b5f961
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions Images/FreeSwitch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:latest as builder
FROM alpine:latest AS builder


# Install packages
Expand Down Expand Up @@ -119,4 +119,15 @@ RUN ls -lah \
&& make libs/libvpx/libvpx.a \
&& make src/include/switch_version.h src/include/switch_swigable_cpp.h \
&& make libfreeswitch.la \
&& make all
&& make all \
&& cd libs/esl \
&& make perlmod \
&& cd /src/freeswitch \
&& make -j1 DESTDIR="/tmp/out" install samples-conf samples-htdocs \
&& cd libs/esl \
&& make -j1 DESTDIR="/tmp/out" perlmod-install


FROM alpine:latest

COPY --from=builder /tmp/out /

0 comments on commit 0b5f961

Please sign in to comment.