FROM archlinux:base-20241110.0.278197 WORKDIR /root RUN pacman -Sy RUN pacman -S sqlcipher --noconfirm RUN pacman -S python --noconfirm RUN pacman -S python-pip --noconfirm COPY code/requirements.txt ./code/ RUN pip install -r code/requirements.txt --break-system-packages COPY code/ ./code/ COPY config/ ./config/ RUN mkdir output ENTRYPOINT ["python", "code/main.py", "table", "--output", "/output/table.csv"]