File: Dockerfile.debian-buster

package info (click to toggle)
projecteur 0.10-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,664 kB
  • sloc: cpp: 11,301; xml: 33; ansic: 11; makefile: 3
file content (25 lines) | stat: -rw-r--r-- 536 bytes parent folder | download | duplicates (3)
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
# Container for building the Projecteur package
# Images available at: https://hub.docker.com/r/jahnf/projecteur/tags

FROM debian:buster

RUN apt-get update
RUN apt-get install -y --no-install-recommends \
  ca-certificates

RUN apt-get install -y --no-install-recommends \
  g++ \
  make \
  cmake \
  udev \
  git \
  pkg-config

RUN apt-get install -y --no-install-recommends \
  qtdeclarative5-dev \
  qttools5-dev-tools \
  qt5-default

RUN apt-get install -y --no-install-recommends \
  libqt5x11extras5-dev \
  libusb-1.0-0-dev