diff --git a/Dockerfile b/Dockerfile index c34f217..803aa44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ENV LANG=C.UTF-8 RUN apt-get update RUN apt-get -y upgrade -RUN apt-get -y install wget python3-pip nodejs git python3-venv +RUN apt-get -y install wget python3-pip git python3-venv RUN pip3 install poetry WORKDIR lookyloo @@ -16,6 +16,7 @@ COPY website website/ COPY setup.py . COPY pyproject.toml . COPY poetry.lock . +COPY README.md . RUN mkdir cache user_agents scraped diff --git a/client/pyproject.toml b/client/pyproject.toml index 49d303d..c1b143c 100644 --- a/client/pyproject.toml +++ b/client/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pylookyloo" -version = "0.1.0" +version = "1.0" description = "Python client for Lookyloo" authors = ["Raphaƫl Vinot "] license = "AGPL-3.0-or-later"