feat: update minishell structure

change rust language -> GNU Assembly
add a Dockerfile to build on x64 linux
also add Makefile pre config (must change)
This commit is contained in:
2025-10-12 19:21:47 +02:00
parent 61980d7946
commit e2a49516ec
9 changed files with 75 additions and 56 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
# x86_64 build
FROM --platform=linux/amd64 debian:bookworm-slim
RUN apt-get update -y \
&& apt-get install -y \
binutils \
make \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
CMD ["make"]