diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:25:25 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:25:25 +0000 |
commit | 7eecd0464223b1bf79351c8f29cb3da5ee31d936 (patch) | |
tree | 7e5deff77c13c92858808181794568f2d49c6f62 /Dockerfile | |
parent | Initial commit. (diff) | |
download | spectre-meltdown-checker-7eecd0464223b1bf79351c8f29cb3da5ee31d936.tar.xz spectre-meltdown-checker-7eecd0464223b1bf79351c8f29cb3da5ee31d936.zip |
Adding upstream version 0.45.upstream/0.45upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..93fe602 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM alpine:3.7 + +RUN apk --update --no-cache add kmod binutils grep perl + +COPY . /check + +ENTRYPOINT ["/check/spectre-meltdown-checker.sh"] |