File: Dockerfile

package info (click to toggle)
python-nuheat 1.0.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 228 kB
  • sloc: python: 897; sh: 5; makefile: 5
file content (13 lines) | stat: -rw-r--r-- 345 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM       python:3.7-slim

VOLUME     /python-nuheat
WORKDIR    /python-nuheat
COPY       . /python-nuheat

# pyreadline and a downgraded version of jedi are required for ipython's
# autocompletion
RUN        pip3 install -U pip
RUN        pip3 install ipython pyreadline jedi==0.17.2
RUN        pip3 install ".[dev]"

CMD        ["/bin/bash"]