File: Dockerfile

package info (click to toggle)
orthanc-python 4.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,256 kB
  • sloc: cpp: 14,963; python: 478; makefile: 31; sh: 15
file content (20 lines) | stat: -rw-r--r-- 641 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM ubuntu:18.04

RUN export DEBIAN_FRONTEND=noninteractive
RUN apt-get --assume-yes update
RUN apt-get --assume-yes install build-essential
RUN apt-get --assume-yes install python-clang-4.0
RUN apt-get --assume-yes install python-pip
RUN apt-get --assume-yes install clang-4.0

# force pystache 0.5.0 (last version supported for python 2.7)
RUN pip install pystache==0.5.0

RUN mkdir /source
RUN mkdir /target
RUN mkdir /CodeAnalysis
COPY *.mustache /CodeAnalysis/
COPY *.py /CodeAnalysis/

ENTRYPOINT ["./CodeAnalysis/ParseOrthancSDK.py"]
CMD ["--libclang=libclang-4.0.so.1", "--source", "source/OrthancCPlugin.h", "--target", "target/"]