Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit 5b5552d

Browse files
committed
* Update to v1.8.0
Signed-off-by: Christian Berger <christian.berger@gu.se>
1 parent 9a313bb commit 5b5552d

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

Dockerfile.aarch64

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,12 @@ RUN apk update && \
3131
wget \
3232
yasm
3333
RUN cd tmp && \
34-
git clone --depth 1 https://chromium.googlesource.com/libyuv/libyuv && \
34+
git clone https://chromium.googlesource.com/libyuv/libyuv && \
3535
cd libyuv &&\
36+
git reset --hard 5b6042fa0d211ebbd8b477c7f3855977c7973048 && \
3637
make -f linux.mk libyuv.a && cp libyuv.a /usr/lib && cd include && cp -r * /usr/include
3738
RUN cd tmp && \
38-
git clone --depth 1 --branch v1.7.0 https://github.com/webmproject/libvpx.git && \
39+
git clone --depth 1 --branch v1.8.0 https://github.com/webmproject/libvpx.git && \
3940
mkdir build && cd build && \
4041
../libvpx/configure --disable-docs --disable-tools --enable-vp8 --enable-vp9 --enable-libyuv --disable-unit-tests --disable-webm-io --disable-postproc && \
4142
make -j4 && make install

Dockerfile.amd64

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@ RUN apk update && \
2929
wget \
3030
yasm
3131
RUN cd tmp && \
32-
git clone --depth 1 https://chromium.googlesource.com/libyuv/libyuv && \
32+
git clone https://chromium.googlesource.com/libyuv/libyuv && \
3333
cd libyuv &&\
34+
git reset --hard 5b6042fa0d211ebbd8b477c7f3855977c7973048 && \
3435
make -f linux.mk libyuv.a && cp libyuv.a /usr/lib && cd include && cp -r * /usr/include
3536
RUN cd tmp && \
36-
git clone --depth 1 --branch v1.7.0 https://github.com/webmproject/libvpx.git && \
37+
git clone --depth 1 --branch v1.8.0 https://github.com/webmproject/libvpx.git && \
3738
mkdir build && cd build && \
3839
../libvpx/configure --disable-docs --disable-tools --enable-vp8 --enable-vp9 --enable-libyuv --disable-unit-tests --disable-webm-io --disable-postproc && \
3940
make -j4 && make install

Dockerfile.armhf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,12 @@ RUN apk update && \
3131
wget \
3232
yasm
3333
RUN cd tmp && \
34-
git clone --depth 1 https://chromium.googlesource.com/libyuv/libyuv && \
34+
git clone https://chromium.googlesource.com/libyuv/libyuv && \
3535
cd libyuv &&\
36+
git reset --hard 5b6042fa0d211ebbd8b477c7f3855977c7973048 && \
3637
make -f linux.mk libyuv.a && cp libyuv.a /usr/lib && cd include && cp -r * /usr/include
3738
RUN cd tmp && \
38-
git clone --depth 1 --branch v1.7.0 https://github.com/webmproject/libvpx.git && \
39+
git clone --depth 1 --branch v1.8.0 https://github.com/webmproject/libvpx.git && \
3940
mkdir build && cd build && \
4041
../libvpx/configure --disable-docs --disable-tools --enable-vp8 --enable-vp9 --enable-libyuv --disable-unit-tests --disable-webm-io --disable-postproc && \
4142
make -j4 && make install

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ section to your `docker-compose.yml`:
3434
version: '2' # Must be present exactly once at the beginning of the docker-compose.yml file
3535
services: # Must be present exactly once at the beginning of the docker-compose.yml file
3636
video-vpx-encoder:
37-
image: chalmersrevere/opendlv-video-vpx-encoder-multi:v0.0.6
37+
image: chalmersrevere/opendlv-video-vpx-encoder-multi:v0.0.7
3838
restart: on-failure
3939
network_mode: "host"
4040
ipc: "host"

0 commit comments

Comments
 (0)