9 lines
273 B
Docker
9 lines
273 B
Docker
FROM debian:stretch
|
|
|
|
RUN apt-get update \
|
|
&& apt-get -y install \
|
|
initramfs-tools \
|
|
linux-image-amd64
|
|
|
|
RUN echo 'RESUME=none' > /etc/initramfs-tools/conf.d/resume \
|
|
&& mkinitramfs -o /tmp/initrd.gz $(find /boot -name 'vmlinuz-*' -printf '%f\n' | sed 's/^vmlinuz-//')
|