Vlad Liamzin

Results 1 comments of Vlad Liamzin

@mevsme Try to add `ENV TERM="xterm" ` to Dockerfile. ``` # Base image FROM python:latest COPY *.py /nowarddos/ COPY requirements.txt /nowarddos/ WORKDIR /nowarddos ENV TERM="xterm" RUN pip install -r requirements.txt...