From b0ab282d7fda8d6106ab8ebed96aa8368a43be6b Mon Sep 17 00:00:00 2001 From: Casey Schneider-Mizell Date: Tue, 5 Mar 2024 13:23:43 -1000 Subject: [PATCH] add needed files --- Dockerfile | 4 +++- MANIFEST.in | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1db31c8..6d7520a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,9 @@ RUN python -m pip install --upgrade pip RUN mkdir -p /home/nginx/.cloudvolume/secrets && chown -R nginx /home/nginx && usermod -d /home/nginx -s /bin/bash nginx COPY requirements.txt /app/. +COPY requirements_service.txt /app/. RUN pip install numpy && \ - pip install -r requirements.txt + pip install -r requirements.txt && \ + pip install -r requirements_service.txt COPY . /app diff --git a/MANIFEST.in b/MANIFEST.in index ec716c0..afb8336 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ include requirements.txt include test_requirements.txt +include requirements_service.txt include emannotationschemas/migrations/alembic.ini \ No newline at end of file