TDMtermite/Dockerfile

18 lines
252 B
Docker

FROM debian:bullseye-20210111
USER root
RUN apt-get update && apt-get install -y \
build-essential git
RUN g++ -v
COPY ./ /tdm_ripper/
RUN cd /tdm_ripper && ls -lh && make install && ls -lh /usr/local/bin/tdmripper
CMD ["sleep","inifity"]