diff --git a/Dockerfile b/Dockerfile index e1afef4..cd98f5a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] diff --git a/code/requirements.txt b/code/requirements.txt index daf51fb..fda4dd6 100644 --- a/code/requirements.txt +++ b/code/requirements.txt @@ -1,2 +1,2 @@ -pandas==2.2.3 -scikit-learn==1.5.2 +pandas +scikit-learn