You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
415 B
16 lines
415 B
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"]
|