https://github.com/desmovalvo/tarsier
Raw File
Tip revision: bd84494c5cef8e631745ca7f2b8dcc1a5ca2483f authored by Fabio Viola on 13 August 2018, 09:52:45 UTC
Merge branch 'mdpi' of https://github.com/desmovalvo/tarsier into mdpi
Tip revision: bd84494
Dockerfile
FROM python:3
ADD . /

# install requirements
RUN pip3 install -r requirements.txt

# open the port and start the process
EXPOSE 8080
CMD python3 tarsier.py
back to top