Files
kata-containers/tools/packaging/static-build/ovmf/Dockerfile
Alex Carter f0b58e38d2 static-build: Add build script for OVMF
Introduces a build script for OVMF. Defaults to X86_64 build (x64 in OVMF)

Fixes: #4169

Signed-off-by: Alex Carter <alex.carter@ibm.com>
2022-07-28 09:07:49 -05:00

22 lines
423 B
Docker

# Copyright (c) 2022 IBM
#
# SPDX-License-Identifier: Apache-2.0
FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y --no-install-recommends \
ca-certificates \
curl \
g++ \
gcc \
git \
iasl \
make \
nasm \
python \
python3 \
uuid-dev && \
apt-get clean && rm -rf /var/lib/lists/