diff --git a/app/Dockerfile b/app/Dockerfile new file mode 100644 index 0000000..cbb4c3f --- /dev/null +++ b/app/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3.11-slim + +WORKDIR /app + +COPY . . + +RUN pip install .[app] + +CMD ["tda-mapper-app"] \ No newline at end of file