9 lines
No EOL
232 B
Docker
9 lines
No EOL
232 B
Docker
FROM debian:bookworm
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN apt update
|
|
|
|
RUN apt install -y git dh-make build-essential autoconf autotools-dev
|
|
RUN apt-get clean autoclean
|
|
RUN apt-get autoremove --yes
|
|
RUN rm -rf /var/lib/{apt,dpkg,cache,log}/ |