diff options
author | Daniil Baturin <daniil@vyos.io> | 2024-03-07 16:37:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-07 16:37:11 +0100 |
commit | 089b59560565388d1c21a440418be11618b32af1 (patch) | |
tree | 67de6e4e15dbbe7fb2dc1e25706b300a1be97c4f /docker/Dockerfile | |
parent | 6758b13c7ea096fcc0a13fcf036dcc76b4417624 (diff) | |
parent | 63a8f9d3c60e6dde04b0998701a40223d532128a (diff) | |
download | vyos-build-089b59560565388d1c21a440418be11618b32af1.tar.gz vyos-build-089b59560565388d1c21a440418be11618b32af1.zip |
Merge pull request #297 from sarthurdev/tpm_luks
config: T4919: Add emulated TPM encryption test
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 8bc0c5c9..32cedb70 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -105,6 +105,9 @@ RUN apt-get update && apt-get install -y \ debootstrap \ live-build +# Packages for TPM test +RUN apt-get update && apt-get install -y swtpm + # Syslinux and Grub2 is only supported on x86 and x64 systems RUN if dpkg-architecture -ii386 || dpkg-architecture -iamd64; then \ apt-get update && apt-get install -y \ |