Skip to content
Merged
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
8 changes: 3 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
FROM ubuntu:xenial as base
FROM ubuntu:focal as base

# Warning: This file is experimental.

# Install system requirements
RUN apt-get update && \
apt-get install -y software-properties-common && \
apt-add-repository -y ppa:deadsnakes/ppa && apt-get update && \

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

The line above can go away also, although you may need to add software-properties-common back to the list of packages below. See https://github.com/edx/edx-platform/pull/25205/files for the original change.

# Global requirements
DEBIAN_FRONTEND=noninteractive apt-get install --yes \
build-essential \
Expand Down Expand Up @@ -40,8 +38,8 @@ RUN apt-get update && \
libxslt1-dev \
ntp \
pkg-config \
python3.8-dev \
python3.8-venv \
python3-dev \
python3-venv \
&& rm -rf /var/lib/apt/lists/*

RUN locale-gen en_US.UTF-8
Expand Down