use debian:testing instead of arch

main
Paul Feitzinger 5 months ago
parent c9e2c35347
commit 21629be1f1

@ -1,10 +1,10 @@
FROM archlinux:latest
FROM debian:testing
WORKDIR /root
RUN pacman -Sy
RUN pacman -S sqlcipher --noconfirm
RUN pacman -S python --noconfirm
RUN pacman -S python-pip --noconfirm
RUN apt-get update
RUN apt-get -y install python3
RUN apt-get -y install python3-pip
RUN apt-get -y install sqlcipher
COPY code/requirements.txt ./code/
RUN pip install -r code/requirements.txt --break-system-packages
@ -12,4 +12,4 @@ COPY code/ ./code/
COPY config/ ./config/
RUN mkdir output
ENTRYPOINT ["python", "code/main.py", "table", "--output", "/output/table.csv"]
CMD ["python3", "code/main.py", "table", "--output", "/output/table.csv"]

@ -1,2 +1,2 @@
pandas==2.2.3
scikit-learn==1.5.2
pandas
scikit-learn

Loading…
Cancel
Save