lookyloo/Dockerfile

30 lines
811 B
Docker
Raw Permalink Normal View History

2022-04-26 00:33:50 +02:00
FROM ubuntu:22.04
2019-01-23 15:13:29 +01:00
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
2022-04-26 00:33:50 +02:00
ENV TZ=Etc/UTC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
2018-03-16 11:05:42 +01:00
RUN apt-get update
RUN apt-get -y upgrade
2021-08-24 18:50:05 +02:00
RUN apt-get -y install wget python3-dev git python3-venv python3-pip python-is-python3
2022-04-25 15:48:07 +02:00
RUN apt-get -y install libnss3 libnspr4 libatk1.0-0 libatk-bridge2.0-0 libcups2 libxkbcommon0 libxdamage1 libgbm1 libpango-1.0-0 libcairo2 libatspi2.0-0
2020-01-21 17:39:18 +01:00
RUN pip3 install poetry
2019-01-23 15:13:29 +01:00
2018-03-16 11:05:42 +01:00
WORKDIR lookyloo
2019-11-02 05:05:08 +01:00
COPY lookyloo lookyloo/
2021-07-27 08:09:21 +02:00
COPY tools tools/
2019-11-02 05:05:08 +01:00
COPY bin bin/
COPY website website/
2020-01-21 17:39:18 +01:00
COPY pyproject.toml .
COPY poetry.lock .
2020-02-10 11:42:09 +01:00
COPY README.md .
2019-11-02 05:05:08 +01:00
RUN mkdir cache user_agents scraped
RUN echo LOOKYLOO_HOME="'`pwd`'" > .env
2022-04-25 15:48:07 +02:00
RUN poetry install
RUN poetry run playwright install
2021-08-24 18:50:05 +02:00
RUN poetry run tools/3rdparty.py
RUN poetry run tools/generate_sri.py