File: Dockerfile_se

package info (click to toggle)
python-schwifty 2024.09.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,072 kB
  • sloc: python: 3,057; makefile: 209; sh: 9
file content (14 lines) | stat: -rw-r--r-- 423 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
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" ]