fix Dockerfile, cython: print_table to print all channels in single table

This commit is contained in:
2021-04-15 20:17:02 +02:00
parent 97c2195f98
commit bda799832c
4 changed files with 21 additions and 4 deletions

View File

@@ -4,8 +4,9 @@ FROM debian:bullseye-20210111
USER root
RUN apt-get update && apt-get install -y \
build-essential git \
build-essential git vim \
python3 python3-pip
RUN python3 -m pip install cython
RUN g++ -v
@@ -15,6 +16,6 @@ COPY ./ /IMCtermite/
RUN cd /IMCtermite && ls -lh && make install && ls -lh /usr/local/bin/imctermite
# install Python module
# RUN cd /tdm_ripper && ls -lh && make cython-requirements && make cython-install
RUN cd /IMCtermite && ls -lh && make cython-install
CMD ["sleep","inifity"]
CMD ["sleep","infinity"]