Files
minishell/Dockerfile
Loïc GUEZO e2a49516ec feat: update minishell structure
change rust language -> GNU Assembly
add a Dockerfile to build on x64 linux
also add Makefile pre config (must change)
2025-10-12 19:21:47 +02:00

12 lines
211 B
Docker

# 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"]