7 lines
148 B
Docker
7 lines
148 B
Docker
|
ARG BUILD_FROM=debian:bullseye
|
||
|
FROM ${BUILD_FROM}
|
||
|
|
||
|
RUN \
|
||
|
apt-get update && \
|
||
|
apt-get install -y build-essential devscripts debhelper pkg-config
|