Skip to content

Commit 74fc8b8

Browse files
committed
fix Merge conflict
2 parents e2b3b43 + 3287b2d commit 74fc8b8

File tree

4 files changed

+46
-67
lines changed

4 files changed

+46
-67
lines changed

Dockerfile

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
1-
FROM python:3.8.4-buster
1+
FROM python:3.10.8-slim-bullseye
22

33
ENV LC_ALL C.UTF-8
44
ENV LANG C.UTF-8
55

66
WORKDIR /docs-scraper
77

8-
RUN apt-get update -y \
9-
&& apt-get install -y python3-pip libnss3 \
10-
&& apt-get install -y chromium-driver
8+
RUN apt-get update -y && apt-get install -y python3-pip libnss3 chromium-driver
119

1210
RUN pip3 install pipenv
1311

14-
1512
COPY Pipfile Pipfile
16-
COPY Pipfile.lock Pipfile.lock
17-
18-
RUN pipenv --python 3.8 install
13+
COPY Pipfile.lock Pipfile.lock
1914

15+
RUN pipenv install
2016

21-
COPY . .
17+
COPY . .

Pipfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ name = "pypi"
55

66
[packages]
77
Scrapy = "==2.7.1"
8-
selenium = "==4.6.0"
9-
pytest = "==7.1.3"
10-
meilisearch = "==0.22.1"
8+
selenium = "==4.6.1"
9+
meilisearch = "==0.23.0"
1110
requests-iap = "==0.2.0"
1211
python-keycloak-client = "==0.2.3"
12+
requests = "==2.28.1"
1313

1414
[dev-packages]
15+
pytest = "==7.1.3"
1516
pylint = "==2.15.7"
16-
tox = "==3.27.0"
17+
tox = "==3.27.1"
1718
tox-pipenv = "==1.10.1"
1819
wrapt = "*"

Pipfile.lock

Lines changed: 35 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ Websites that need JavaScript for rendering are passed through ChromeDriver.<br>
523523

524524
## 🤖 Compatibility with Meilisearch
525525

526-
This package only guarantees the compatibility with the [version v0.29.0 of Meilisearch](https://github.com/meilisearch/meilisearch/releases/tag/v0.29.0).
526+
This package only guarantees the compatibility with the [version v0.30.0 of Meilisearch](https://github.com/meilisearch/meilisearch/releases/tag/v0.30.0).
527527

528528
## ⚙️ Development Workflow and Contributing
529529

0 commit comments

Comments
 (0)