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
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM ubuntu:16.04
FROM ubuntu:18.04
MAINTAINER Piotr Król <piotr.krol@3mdeb.com>

RUN \
DEBIAN_FRONTEND=noninteractive apt-get -qq update && \
DEBIAN_FRONTEND=noninteractive apt-get -qqy install \
ccache \
build-essential \
python \
python-pip \
python3.7 \
python3-pip \
qemu \
sudo \
vim \
Expand All @@ -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 && \
Expand Down