mirror of
https://github.com/guezoloic/minishell.git
synced 2026-01-25 06:34:21 +00:00
12 lines
218 B
Docker
12 lines
218 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", "run"] |