21 lines
403 B
Docker
21 lines
403 B
Docker
|
|
FROM debian:bullseye-20210111
|
|
|
|
USER root
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential git \
|
|
python3 python3-pip
|
|
|
|
RUN g++ -v
|
|
|
|
COPY ./ /IMCtermite/
|
|
|
|
# install CLI tool
|
|
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
|
|
|
|
CMD ["sleep","inifity"]
|