Skip to content

Commit

Permalink
update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sage-wright committed Dec 29, 2023
1 parent f821ac7 commit f4eda33
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f4eda33

Please sign in to comment.