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.

15 lines
372 B

FROM debian:testing
WORKDIR /root
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
COPY code/ ./code/
RUN mkdir output
ENTRYPOINT ["python3", "code/main.py", "table", "--output", "/output/table.csv"]