mirror of https://github.com/CIRCL/lookyloo
20 lines
515 B
Docker
20 lines
515 B
Docker
FROM ubuntu:bionic
|
|
ENV LC_ALL=C.UTF-8
|
|
ENV LANG=C.UTF-8
|
|
|
|
RUN apt-get update
|
|
RUN apt-get -y upgrade
|
|
RUN apt-get -y install git wget python3-pip pwgen
|
|
RUN pip3 install pipenv
|
|
|
|
RUN git clone https://github.com/CIRCL/lookyloo.git
|
|
WORKDIR lookyloo
|
|
RUN pipenv install
|
|
run echo LOOKYLOO_HOME="'`pwd`'" > .env
|
|
run echo FLASK_APP="'`pwd`/lookyloo'" >> .env
|
|
|
|
RUN sed -i "s/SPLASH = 'http:\/\/127.0.0.1:8050'/SPLASH = 'http:\/\/splash:8050'/g" lookyloo/__init__.py
|
|
|
|
EXPOSE 5000
|
|
ENTRYPOINT ["pipenv", "run", "start_website.py"]
|