Skip to content
Open
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
6 changes: 3 additions & 3 deletions ingestion/env/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ LABEL description="Streaming API build environment."

RUN apt-get update && apt-get upgrade -y

RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get install -y --no-install-recommends \
apt-utils \
autoconf \
autoconf-archive \
Expand Down Expand Up @@ -80,7 +80,7 @@ RUN apt-get update && apt-get install -y \
RUN easy_install pip

RUN add-apt-repository ppa:jonathonf/ffmpeg-3 -y
RUN apt-get update && apt-get install -y \
RUN apt-get update && apt-get install -y --no-install-recommends \
libav-tools \
libavdevice-dev \
libx264-dev \
Expand All @@ -93,7 +93,7 @@ RUN apt-get update && apt-get install -y \
ffmpeg \
&& apt-get clean

RUN apt-get install -y \
RUN apt-get install -y --no-install-recommends \
libgstreamer1.0-0 \
gstreamer1.0-plugins-base \
gstreamer1.0-plugins-good \
Expand Down