From 76490d2c284f7ac7adb81ea572803bdefff6a530 Mon Sep 17 00:00:00 2001 From: Xander Smeets Date: Tue, 20 Aug 2024 10:39:57 +0200 Subject: [PATCH] Add xlrd as dependency (for reading xls files) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aafd557..db8af32 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ FROM python:3.12 -RUN python -m pip install --no-cache-dir pandas numpy +RUN python -m pip install --no-cache-dir pandas numpy xlrd