aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2020-09-24 16:41:57 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2020-09-24 16:41:57 +0530
commitab68e0b4038599dcb33bb00411aed04593cb1fde (patch)
treed9640d2f1171d819ca34e4e60605802612146dfe /Dockerfile
parent8f534261a934542fef612362ab851b87c59887dd (diff)
added docker specific requirements file to fix heroku
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 39acfc8..3e0bc50 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -29,8 +29,8 @@ EXPOSE 8080
WORKDIR /curie-web
-COPY requirements.txt /curie-web
-RUN python3 -m pip install -r requirements.txt
+COPY requirements-docker.txt /curie-web
+RUN python3 -m pip install -r requirements-docker.txt
# Install PLIP
RUN git clone https://github.com/navanchauhan/plip source \