File: Dockerfile.debian

package info (click to toggle)
libsmbios 2.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 4,684 kB
  • sloc: ansic: 6,953; xml: 4,275; python: 3,459; cpp: 1,878; makefile: 366; sh: 309
file content (25 lines) | stat: -rw-r--r-- 460 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM debian:testing

RUN echo "deb-src http://deb.debian.org/debian/ testing main" >> /etc/apt/sources.list
RUN apt-get update -qq && apt-get install -yq --no-install-recommends \
	build-essential \
	debhelper \
	devscripts \
	doxygen \
	fakeroot \
	git \
	graphviz \
	help2man \
	python \
	libxml2-dev \
	lsb-release \
	pkg-config \
	autoconf \
	automake \
	libtool \
	gettext \
	autopoint
RUN mkdir /build
WORKDIR /build
COPY . .
CMD ["./pkg/mk-rel-deb.sh"]