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
|
2024-02-23 02:01:31 +01:00
|
|
|
RUN apt-get -y install libxcomposite1 libxfixes3 libxrandr2 libasound2 libmagic1
|
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/
|
2024-01-13 01:57:19 +01:00
|
|
|
COPY config config/
|
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 .
|
2023-03-06 09:04:26 +01:00
|
|
|
COPY LICENSE .
|
2019-11-02 05:05:08 +01:00
|
|
|
|
2024-01-13 02:01:53 +01:00
|
|
|
RUN mkdir cache user_agents scraped logs
|
2019-11-02 05:05:08 +01:00
|
|
|
|
|
|
|
RUN echo LOOKYLOO_HOME="'`pwd`'" > .env
|
2024-01-13 01:51:31 +01:00
|
|
|
RUN cat .env
|
2022-04-25 15:48:07 +02:00
|
|
|
RUN poetry install
|
2024-08-13 14:17:04 +02:00
|
|
|
RUN poetry run playwright install-deps
|
2022-04-25 15:48:07 +02:00
|
|
|
RUN poetry run playwright install
|
2021-08-24 18:50:05 +02:00
|
|
|
RUN poetry run tools/3rdparty.py
|
2022-04-08 14:18:58 +02:00
|
|
|
RUN poetry run tools/generate_sri.py
|