mirror of
https://github.com/speed47/spectre-meltdown-checker.git
synced 2024-11-09 15:18:03 +01:00
42a3a61f1d
* Listed the required volumes in the Dockerfile. * Added docker-compose.yml for convenience as users won't need to manually specify volumes and stuff when running through docker-compose. Adjusted README.md to reflect this change.
12 lines
189 B
Docker
12 lines
189 B
Docker
FROM alpine:3.7
|
|
|
|
RUN apk --update --no-cache add kmod binutils grep perl
|
|
|
|
COPY . /check
|
|
|
|
ENTRYPOINT ["/check/spectre-meltdown-checker.sh"]
|
|
|
|
VOLUME /boot
|
|
VOLUME /dev/cpu
|
|
VOLUME /lib/modules
|