First commit
For now xserver refuse to compile dues to missing dependencies
This commit is contained in:
commit
3d3a37d79f
34 changed files with 1570 additions and 0 deletions
21
Dockerfile
Normal file
21
Dockerfile
Normal file
|
@ -0,0 +1,21 @@
|
|||
FROM debian:bullseye-slim
|
||||
|
||||
RUN apt update \
|
||||
&& apt install --no-install-recommends -y libext2fs2 \
|
||||
mmdebstrap \
|
||||
parted \
|
||||
multistrap \
|
||||
udisks2 \
|
||||
qemu-system-aarch64 \
|
||||
qemu-user-static \
|
||||
binfmt-support \
|
||||
arch-test \
|
||||
curl \
|
||||
bash
|
||||
|
||||
RUN echo "none /proc/sys/fs/binfmt_misc binfmt_misc defaults 0 0" > /etc/fstab
|
||||
COPY docker/entrypoint.sh /tmp
|
||||
COPY src/ /tmp
|
||||
WORKDIR /tmp
|
||||
CMD bash
|
||||
# CMD /tmp/entrypoint.sh
|
Loading…
Add table
Add a link
Reference in a new issue