File: Dockerfile

package info (click to toggle)
reprotest 0.7.32
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 548 kB
  • sloc: python: 5,064; makefile: 47; sh: 29
file content (9 lines) | stat: -rw-r--r-- 342 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
FROM debian:stretch
RUN apt-get update -q && DEBIAN_FRONTEND=noninteractive apt-get install -qy --no-install-recommends \
    python3 python3-setuptools ca-certificates \
    diffoscope disorderfs faketime locales-all sudo \
    && rm -rf /var/lib/apt/lists/*
WORKDIR /reprotest
COPY . .
RUN python3 setup.py install
ENTRYPOINT ["reprotest"]