Skip to content

Commit

Permalink
v1.2.2-bookworm
Browse files Browse the repository at this point in the history
  • Loading branch information
ladamalina committed Apr 17, 2024
1 parent 75d9fce commit e5cae4f
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

## Supported tags and respective `Dockerfile` links

* `latest`, `v1.2.1-bookworm` _[(Dockerfile)](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.1-bookworm/Dockerfile)_
* `latest`, `v1.2.2-bookworm` _[(Dockerfile)](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.2-bookworm/Dockerfile)_
* `v1.2.1-bookworm` _[(Dockerfile)](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.1-bookworm/Dockerfile)_
* `v1.2.1-bullseye` _[(Dockerfile)](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.1-bullseye/Dockerfile)_
* `v1.2.0-bullseye` _[(Dockerfile)](https://github.com/ladamalina/janus-gateway/blob/master/v1.2.0-bullseye/Dockerfile)_
* `v1.1.4-bullseye` _[(Dockerfile)](https://github.com/ladamalina/janus-gateway/blob/master/v1.1.4-bullseye/Dockerfile)_
Expand Down
71 changes: 71 additions & 0 deletions v1.2.2-bookworm/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
FROM debian:bookworm

LABEL maintainer="Nadezhda Ryabtsova <[email protected]>"
LABEL description="Provides an image with Janus Gateway"

RUN echo deb http://deb.debian.org/debian stable main contrib non-free >> /etc/apt/sources.list && \
apt-get update && \
apt-get install -y --no-install-recommends \
git \
build-essential \
autoconf \
automake \
autotools-dev \
dh-make \
debhelper \
devscripts \
fakeroot \
xutils \
lintian \
pbuilder \
libconfig-dev \
libmicrohttpd-dev \
libjansson-dev \
libnice-dev \
libssl-dev \
libsrtp2-dev \
libsofia-sip-ua-dev \
libglib2.0-dev \
libopus-dev \
libogg-dev \
pkg-config \
gengetopt \
libtool \
automake \
cmake \
libmicrohttpd-dev \
libjansson-dev \
libcurl4-openssl-dev \
libglib2.0-dev \
libssl-dev \
libopus-dev \
libavutil-dev \
libavcodec-dev \
libavformat-dev \
libwebsockets-dev \
liblua5.3-dev && \
rm -rf /var/lib/apt/lists/*

RUN mkdir -p /usr/src/libsrtp && \
cd /usr/src/libsrtp && \
wget https://github.com/cisco/libsrtp/archive/v2.3.0.tar.gz && \
tar xfv v2.3.0.tar.gz && \
cd libsrtp-2.3.0 && \
./configure --prefix=/usr --enable-openssl && \
make shared_library && \
make install && \
rm -rf /usr/src/libsrtp

RUN mkdir -p /usr/src/janus /var/janus/janus/log /var/janus/janus/data && \
cd /usr/src/janus && \
wget -c https://github.com/meetecho/janus-gateway/archive/v1.2.2.tar.gz && \
tar -xzf v1.2.2.tar.gz && \
cd janus-gateway-1.2.2 && \
sh autogen.sh && \
./configure --prefix=/var/janus/janus --enable-post-processing --disable-rabbitmq --disable-data-channels --disable-aes-gcm && \
make && make install && make configs && \
rm -rf /usr/src/janus

EXPOSE 8088/tcp 8188/tcp 8188/udp

CMD ["/var/janus/janus/bin/janus", "--nat-1-1=${DOCKER_IP}"]

0 comments on commit e5cae4f

Please sign in to comment.