File: Dockerfile

package info (click to toggle)
qcat 1.1.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 16,040 kB
  • sloc: python: 2,613; sh: 43; makefile: 10
file content (33 lines) | stat: -rw-r--r-- 731 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
26
27
28
29
30
31
32
33
FROM ubuntu:16.04
MAINTAINER prescheneder

COPY . /qcat/

RUN apt-get update \
    && apt-get install --no-install-recommends -y \
        python3 \
        python3-pip \
        python3-dev \
        build-essential \
        time \
        python3-pkg-resources \
        autotools-dev \
        autoconf \
        libboost-all-dev \
    && pip3 --no-cache-dir install --upgrade \
        setuptools \
        wheel \
    && cd /qcat \
	&& pip3 --no-cache-dir install . \
	&& cd - \
	&& rm -rf /qcat \
	&& qcat -h \
    # Cleanup \
    && apt-get remove --purge -y \
        build-essential \
        python3-dev \
        autotools-dev \
        autoconf \
    && apt autoremove --purge -y \
    && rm -rf /var/lib/apt/lists/*