From a5e8351152d9513811e2d6d9eaaf2180e35e002d Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Mon, 10 Jan 2022 13:19:31 +0100 Subject: feat(uti): Dash demo - displays the table with trending data downloaded from trending pages Signed-off-by: Peter Mikus Change-Id: Ic0d48290105ccd846c7de9ee4d8acb78e0b72f00 --- resources/tools/dash/Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 resources/tools/dash/Dockerfile (limited to 'resources/tools/dash/Dockerfile') diff --git a/resources/tools/dash/Dockerfile b/resources/tools/dash/Dockerfile new file mode 100644 index 0000000000..cd7eab7772 --- /dev/null +++ b/resources/tools/dash/Dockerfile @@ -0,0 +1,12 @@ +ARG PYTHON_VERSION=3.10 +FROM python:${PYTHON_VERSION}-buster + +WORKDIR /app + +COPY ./app/requirements.txt . + +RUN pip3 install -r requirements.txt + +EXPOSE 5000 + +CMD [ "uwsgi", "app.ini" ] \ No newline at end of file -- cgit 1.2.3-korg