From f07d6d10078df66164f2cb3c324843dcbf9a96f4 Mon Sep 17 00:00:00 2001 From: Diego Porras Date: Sun, 25 Jun 2023 20:11:30 +0100 Subject: [PATCH] Update to use python 3.7 so EDK2 Unit tests pass --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index e8f70ad..ef82e2d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:16.04 +FROM ubuntu:18.04 MAINTAINER Piotr Król RUN \ @@ -6,8 +6,8 @@ RUN \ DEBIAN_FRONTEND=noninteractive apt-get -qqy install \ ccache \ build-essential \ - python \ - python-pip \ + python3.7 \ + python3-pip \ qemu \ sudo \ vim \ @@ -22,7 +22,7 @@ RUN \ zip \ && DEBIAN_FRONTEND=noninteractive apt-get clean -RUN pip install -q uefi_firmware +RUN pip3 install -q uefi_firmware RUN useradd -m edk2 && \ echo "edk2:edk2" | chpasswd && \