File: Dockerfile

package info (click to toggle)
doit 0.36.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,704 kB
  • sloc: python: 11,863; makefile: 33; ansic: 14; javascript: 3; sh: 1
file content (16 lines) | stat: -rw-r--r-- 442 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Run/test doit on debian unstable

# docker build -t doit-debian .
# docker run -it --cap-add SYS_PTRACE -v /home/eduardo/work/doit/dev:/root/doit doit-debian

# pip3 install -e .
# pip3 install -r dev_requirements.txt


from debian:unstable

RUN apt-get update && apt-get install eatmydata --no-install-recommends -y
RUN eatmydata apt-get install python3-pytest python3-pip -y
RUN apt-get install python3-gdbm strace -y

WORKDIR /root/doit