From f4eda333afc437468791a65962f2cc93522bdbe4 Mon Sep 17 00:00:00 2001 From: Sage Wright Date: Fri, 29 Dec 2023 14:57:58 +0000 Subject: [PATCH] update dockerfile --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 90fc784..d7637e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,9 +10,13 @@ RUN apt-get update && apt-get install -y \ python3-setuptools \ python3-wheel \ wkhtmltopdf \ + wget \ && rm -rf /var/lib/apt/lists/* -COPY . /theiavalidate +RUN wget https://github.com/theiagen/theiavalidate/archive/refs/tags/v${THEIAVALIDATE_VER}.tar.gz \ + && tar -xzf v${THEIAVALIDATE_VER}.tar.gz \ + && mv theiavalidate-${THEIAVALIDATE_VER} /theiavalidate \ + && rm v${THEIAVALIDATE_VER}.tar.gz RUN pip3 install -r /theiavalidate/requirements.txt \ && chmod +x /theiavalidate/theiavalidate/*.py