File: Dockerfile.debianize

package info (click to toggle)
lintian-brush 0.147
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 9,872 kB
  • sloc: python: 17,649; makefile: 814; sh: 140; xml: 119; javascript: 3; ansic: 2
file content (7 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (3)
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"]