-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
41 lines (39 loc) · 962 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
FROM --platform=amd64 debian as base
RUN apt-get update && \
apt-get install \
apt-utils \
-y && \
apt-get install \
apt-utils \
automake \
bash \
binutils \
bison \
coreutils \
cppcheck \
curl \
flex \
gcc \
gcc-multilib \
gdisk \
git \
grep \
gzip \
m4 \
make \
mtools \
nasm \
python3-pkg-resources \
python3-pygments \
sed \
xorriso \
-y
FROM base as limine
# WORKDIR /limine
# RUN git clone https://github.com/limine-bootloader/limine.git --branch=v8.x . && \
# ./bootstrap && \
# ./configure --enable-bios --enable-bios-cd --enable-uefi-x86-64 --enable-uefi-cd && \
# make && \
# curl -Lo bin/limine.h https://github.com/limine-bootloader/limine/raw/trunk/limine.h
# RUN git clone https://github.com/limine-bootloader/limine.git --branch=v8.x-binary limine/bin
ADD . /mnt