forked from mdomke/schwifty
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update swedish bank registry (mdomke#108)
* Update script to fetch data from PDF * Add Dockerfile to generate updated Swedish list * Update list of Swedish banks
- Loading branch information
1 parent
fb6f063
commit 1b58ad4
Showing
3 changed files
with
73 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
FROM python:3.10 | ||
|
||
# How use this Dockerfile to generate the Swedish bank registry: | ||
|
||
# docker build -t schwifty_se -f scripts/Dockerfile_se . | ||
# docker run --rm -v `pwd`:/schwifty --workdir /schwifty schwifty_se | ||
|
||
RUN apt update -y \ | ||
&& apt install -y ghostscript python3-tk libgl1 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip install "camelot-py[base]" opencv-python | ||
|
||
CMD [ "python", "scripts/get_bank_registry_se.py" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters