sec-parser / Dockerfile.linux
sefd-anonymous's picture
Upload SEC parser release files
62787e2 verified
raw
history blame contribute delete
280 Bytes
FROM python:3.12.12-bookworm
ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /app
RUN apt-get update && apt-get install -y wkhtmltopdf && rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN playwright install chromium --with-deps