Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 6 additions & 3 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
FROM python:3.7
FROM python:3.8

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
RUN \
&& apt-get update && apt-get install -y --no-install-recommends \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

&& should be removed from the beginning of this line -> can't build container

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm also running into both these issues.
It's unclear to me why the ppa was added, since none of the installed packages live in the ppa.

Copy link
Contributor

@jbergler jbergler Apr 27, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I opened #34747 with fixes.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks =)
yeah I wasn't sure why it got added there. Maybe it was an purpose. Thats why I've asked to fix it instead of creating a PR with removing it^^

software-properties-common \
&& add-apt-repository ppa:jonathonf/ffmpeg-4 \
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When building the container I'm getting this back
E: The repository 'http://ppa.launchpad.net/jonathonf/ffmpeg-4/ubuntu groovy Release' does not have a Release file.

&& apt-get update && apt-get install -y --no-install-recommends \
libudev-dev \
libavformat-dev \
libavcodec-dev \
Expand Down
Loading