mirror of
https://github.com/guezoloic/minishell.git
synced 2026-01-25 10:34:22 +00:00
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:
12
Dockerfile
Normal file
12
Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user