Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lock pipenv version to a compatible one with the python version on ubuntu 18.04. Install sanic through pipfile #90

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt-get update && \
apt-get install -yq \
build-essential \
gcc \
git \
git \
libffi6 libffi-dev \
gobject-introspection \
gstreamer1.0-libav \
Expand All @@ -17,7 +17,7 @@ RUN apt-get update && \
gstreamer1.0-plugins-bad \
gstreamer1.0-plugins-ugly \
gstreamer1.0-tools \
gir1.2-gst-plugins-bad-1.0 \
gir1.2-gst-plugins-bad-1.0 \
libcairo2-dev \
libgirepository1.0-dev \
pkg-config \
Expand All @@ -32,7 +32,7 @@ RUN apt-get update && \

RUN git clone --depth 1 https://github.com/bbc/brave.git && \
cd brave && \
pip3 install pipenv sanic && \
pip3 install -Iv pipenv==2022.4.8 && \
pipenv install --ignore-pipfile && \
mkdir -p /usr/local/share/brave/output_images/

Expand Down