123456789101112131415161718 |
- FROM tiangolo/gunicorn:latest
- RUN apt-get update && \
- apt-get install -y vim wget curl sngrep tcpflow tcpdump
- WORKDIR /code
- ADD ./models /code
- COPY ./requirements.txt /code/requirements.txt
- RUN pip install -r /code/requirements.txt
- EXPOSE 50072
- CMD ["/bin/sh", "-c", "cd python web.py"]
|