Skip to content

Commit

Permalink
add needed files
Browse files Browse the repository at this point in the history
  • Loading branch information
ceesem committed Mar 5, 2024
1 parent 84414e6 commit b0ab282
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include requirements.txt
include test_requirements.txt
include requirements_service.txt
include emannotationschemas/migrations/alembic.ini

0 comments on commit b0ab282

Please sign in to comment.