Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Atualiza Apache Tika e corrige build corrompido #82

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion data_extraction/text_extraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ def _try_extract_text(self, filepath: str) -> str:
if self.is_txt(filepath):
return self._return_file_content(filepath)
with open(filepath, "rb") as file:
headers = {"Content-Type": self._get_file_type(filepath)}
headers = {
"Content-Type": self._get_file_type(filepath),
"Accept": "text/plain",
}
response = requests.put(f"{self._url}/tika", data=file, headers=headers)
response.encoding = "UTF-8"
return response.text
Expand Down
2 changes: 1 addition & 1 deletion scripts/Dockerfile_apache_tika
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN adduser --system gazette && \
apt-get clean

# install Apache Tika
RUN curl -o /tika-server.jar http://archive.apache.org/dist/tika/tika-server-1.24.1.jar && \
RUN curl -o /tika-server.jar https://archive.apache.org/dist/tika/2.9.2/tika-server-standard-2.9.2.jar && \
chmod 755 /tika-server.jar

USER gazette
Expand Down
Loading