File: Dockerfile.debianize

package info (click to toggle)
lintian-brush 0.165
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 12,348 kB
  • sloc: makefile: 877; xml: 119; python: 80; sh: 69; javascript: 3
file content (7 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
FROM debian:sid-slim
RUN apt -y update && apt install -y git dctrl-tools
COPY . /code
RUN apt satisfy -y "$(grep-dctrl -n -w -s Build-Depends '' /code/debian/control)"
ENV PYTHONPATH=/code
VOLUME /data
ENTRYPOINT ["/code/scripts/debianize", "-d", "/data"]