File: Dockerfile

package info (click to toggle)
nomacs 3.21.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 14,892 kB
  • sloc: cpp: 49,343; python: 718; sh: 60; makefile: 22
file content (21 lines) | stat: -rw-r--r-- 451 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
FROM ubuntu:xenial

# fixes tzdata asking for timezone
ENV DEBIAN_FRONTEND=noninteractive

# update ...
RUN apt-get update && apt-get install -y --no-install-recommends apt-utils

RUN apt-get install -y \
    # make C++
    cmake \
    build-essential \
    # required packages to build nomacs
    qt5-default \
    qtcreator-dev \
    libqt5svg5-dev \
    libexiv2-dev \
    # optional packages
    libopencv-dev \
    libraw-dev \
    libquazip5-dev