mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-09 07:56:50 +00:00
As we do not have a simple way to hash Debian, use the Docker sha256 until we switch to Alpine. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
25 lines
350 B
Docker
25 lines
350 B
Docker
FROM debian:jessie
|
|
|
|
RUN apt-get update && apt-get -y upgrade && apt-get -y install \
|
|
unzip \
|
|
xz-utils \
|
|
curl \
|
|
bc \
|
|
build-essential \
|
|
cpio \
|
|
gcc libc6 libc6-dev \
|
|
kmod \
|
|
squashfs-tools \
|
|
genisoimage \
|
|
xorriso \
|
|
syslinux \
|
|
isolinux \
|
|
automake \
|
|
pkg-config \
|
|
git \
|
|
ncurses-dev \
|
|
p7zip-full \
|
|
lzop \
|
|
wget \
|
|
vim
|