Skip to content

Commit

Permalink
[FIX] Temporal fix meanwhile odoo uses -intra option in ffmpeg.
Browse files Browse the repository at this point in the history
 This option is not compatible with ffmpeg lasts versions
  • Loading branch information
josep-tecnativa committed Feb 28, 2024
1 parent 3187eff commit 8463e22
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 5 additions & 1 deletion 16.0.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ RUN echo "LAST_SYSTEM_UID=$LAST_SYSTEM_UID\nLAST_SYSTEM_GID=$LAST_SYSTEM_GID\nFI
&& apt-get install -yqq --no-install-recommends \
./wkhtmltox.deb \
chromium \
ffmpeg \
fonts-liberation2 \
gettext \
git \
Expand All @@ -60,6 +59,11 @@ RUN echo "LAST_SYSTEM_UID=$LAST_SYSTEM_UID\nLAST_SYSTEM_GID=$LAST_SYSTEM_GID\nFI
openssh-client \
telnet \
vim
#Temporal fix
RUN curl -LO http://ftp.debian.org/debian/pool/main/f/ffmpeg/ffmpeg_4.3.6-0+deb11u1_amd64.deb \
&& dpkg -i ffmpeg-doc_4.3.6-0+deb11u1_all.deb \
|| apt-get -f install -y \
&& rm -rf ffmpeg-doc_4.3.6-0+deb11u1_all.deb
RUN echo 'deb http://apt.postgresql.org/pub/repos/apt/ bookworm-pgdg main' >> /etc/apt/sources.list.d/postgresql.list \
&& curl -SL https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
&& apt-get update \
Expand Down
5 changes: 5 additions & 0 deletions 17.0.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ RUN echo -e "LAST_SYSTEM_UID=$LAST_SYSTEM_UID\nLAST_SYSTEM_GID=$LAST_SYSTEM_GID\
openssh-client \
telnet \
vim
#Temporal fix
RUN curl -LO http://ftp.debian.org/debian/pool/main/f/ffmpeg/ffmpeg_4.3.6-0+deb11u1_amd64.deb \
&& dpkg -i ffmpeg-doc_4.3.6-0+deb11u1_all.deb \
|| apt-get -f install -y \
&& rm -rf ffmpeg-doc_4.3.6-0+deb11u1_all.deb
RUN echo 'deb http://apt.postgresql.org/pub/repos/apt/ bookworm-pgdg main' >> /etc/apt/sources.list.d/postgresql.list \
&& curl -SL https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
&& apt-get update \
Expand Down

0 comments on commit 8463e22

Please sign in to comment.