From f6df85b05707a0dad0483a190e0370dc0218cfc6 Mon Sep 17 00:00:00 2001 From: Dylan Simon Date: Fri, 3 May 2024 18:16:03 -0400 Subject: [PATCH] Dockerfile: add requirements and fix path to app --- Dockerfile | 2 +- requirements.txt | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 requirements.txt diff --git a/Dockerfile b/Dockerfile index 6515fc7e..8b86ae7c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,5 +15,5 @@ RUN chmod +x snapshot.sh EXPOSE 8000 # Define the command to run your Python application -CMD ["python", "app.py"] +CMD ["python", "src/mutantautomate/app.py"] diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..487b0f2b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,13 @@ +numpy +pandas +requests +pypdb +bioservices +reportlab +mdtraj +seaborn +matplotlib +fpdf +Bio +chardet +flask