Skip to content

Commit

Permalink
fix(docker): add missing & (2) (#1069)
Browse files Browse the repository at this point in the history
  • Loading branch information
ykzts committed Dec 20, 2023
1 parent 9523d2d commit fc5025c
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions Dockerfile
Expand Up @@ -5,29 +5,29 @@ ENV LIBAOM_VERSION 3.8.0
ENV LIBWEBP_VERSION 1.3.2

RUN \
apt-get update & \
apt-get install -y yasm & \
apt-get update && \
apt-get install -y yasm && \
\
mkdir -p /tmp/src & \
cd /tmp/src & \
wget -O libwebp.tar.gz https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-${LIBWEBP_VERSION}.tar.gz & \
tar -xzf libwebp.tar.gz -C /tmp/src & \
rm libwebp.tar.gz & \
cd /tmp/src/libwebp-${LIBWEBP_VERSION} & \
./configure --prefix /tmp/libwebp & \
make -j4 & \
make install & \
mkdir -p /tmp/src && \
cd /tmp/src && \
wget -O libwebp.tar.gz https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-${LIBWEBP_VERSION}.tar.gz && \
tar -xzf libwebp.tar.gz -C /tmp/src && \
rm libwebp.tar.gz && \
cd /tmp/src/libwebp-${LIBWEBP_VERSION} && \
./configure --prefix /tmp/libwebp && \
make -j4 && \
make install && \
\
mkdir -p /tmp/src & \
cd /tmp/src & \
wget -O libaom.tar.gz https://storage.googleapis.com/aom-releases/libaom-${LIBAOM_VERSION}.tar.gz & \
mkdir -p /tmp/src/libaom-${LIBAOM_VERSION} & \
tar -xzf libaom.tar.gz -C /tmp/src & \
rm libaom.tar.gz & \
mkdir -p /tmp/src/aom_build & \
cd /tmp/src/aom_build & \
cmake /tmp/src/libaom-${LIBAOM_VERSION} -DCMAKE_INSTALL_PREFIX=/tmp/libaom & \
make -j4 & \
mkdir -p /tmp/src && \
cd /tmp/src && \
wget -O libaom.tar.gz https://storage.googleapis.com/aom-releases/libaom-${LIBAOM_VERSION}.tar.gz && \
mkdir -p /tmp/src/libaom-${LIBAOM_VERSION} && \
tar -xzf libaom.tar.gz -C /tmp/src && \
rm libaom.tar.gz && \
mkdir -p /tmp/src/aom_build && \
cd /tmp/src/aom_build && \
cmake /tmp/src/libaom-${LIBAOM_VERSION} -DCMAKE_INSTALL_PREFIX=/tmp/libaom && \
make -j4 && \
make install

WORKDIR /go/src/manael
Expand Down

0 comments on commit fc5025c

Please sign in to comment.