X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fdash%2FDockerfile;fp=resources%2Ftools%2Fdash%2FDockerfile;h=cd7eab77723443e9be0a567a0d867e21a2537de7;hp=0000000000000000000000000000000000000000;hb=a5e8351152d9513811e2d6d9eaaf2180e35e002d;hpb=fd5600f3441d99f4cc9643e3a0da99c850b80a5c 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