Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions VCA2/centos-7.4/media/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCA2/centos-7.4/media/ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCA2/centos-7.4/media/gst/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCA2/centos-7.5/media/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCA2/centos-7.5/media/ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCA2/centos-7.5/media/gst/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCA2/centos-7.6/media/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCA2/centos-7.6/media/ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCA2/centos-7.6/media/gst/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -57,10 +57,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib64 && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib64 --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCA2/ubuntu-16.04/media/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -53,10 +53,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib/x86_64-linux-gnu && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib/x86_64-linux-gnu --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCA2/ubuntu-16.04/media/ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -53,10 +53,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib/x86_64-linux-gnu && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib/x86_64-linux-gnu --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCA2/ubuntu-16.04/media/gst/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -53,10 +53,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib/x86_64-linux-gnu && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib/x86_64-linux-gnu --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCA2/ubuntu-18.04/media/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -53,10 +53,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib/x86_64-linux-gnu && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib/x86_64-linux-gnu --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCA2/ubuntu-18.04/media/ffmpeg/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -53,10 +53,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib/x86_64-linux-gnu && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib/x86_64-linux-gnu --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCA2/ubuntu-18.04/media/gst/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -53,10 +53,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib/x86_64-linux-gnu && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib/x86_64-linux-gnu --enable-shared && \
make -j8 && \
Expand Down
9 changes: 5 additions & 4 deletions VCAC-A/ubuntu-16.04/analytics/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN wget -O - ${YASM_REPO} | tar xz && \

# Build ogg
ARG OGG_VER=1.3.3
ARG OGG_REPO=https://downloads.xiph.org/releases/ogg/libogg-${OGG_VER}.tar.xz
ARG OGG_REPO=https://github.com/xiph/ogg/releases/download/v${OGG_VER}/libogg-${OGG_VER}.tar.xz

RUN wget -O - ${OGG_REPO} | tar xJ && \
cd libogg-${OGG_VER} && \
Expand All @@ -53,10 +53,11 @@ RUN wget -O - ${OGG_REPO} | tar xJ && \

# Build vorbis
ARG VORBIS_VER=1.3.6
ARG VORBIS_REPO=https://downloads.xiph.org/releases/vorbis/libvorbis-${VORBIS_VER}.tar.xz
ARG VORBIS_REPO=https://github.com/xiph/vorbis/archive/v${VORBIS_VER}.tar.gz

RUN wget -O - ${VORBIS_REPO} | tar xJ && \
cd libvorbis-${VORBIS_VER} && \
RUN wget -O - ${VORBIS_REPO} | tar xz && \
cd vorbis-${VORBIS_VER} && \
./autogen.sh && \
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib/x86_64-linux-gnu && \
./configure --prefix="/usr/local" --libdir=/usr/local/lib/x86_64-linux-gnu --enable-shared && \
make -j8 && \
Expand Down
Loading