Skip to content

Commit

Permalink
Update context copy in docker
Browse files Browse the repository at this point in the history
  • Loading branch information
axdanbol committed Aug 21, 2023
1 parent b74993e commit da42287
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion containers/azimuth/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ FROM hubmap/azimuth-annotate:1.3
COPY context/requirements-freeze.txt .
RUN pip install -r requirements-freeze.txt

COPY context/* .
COPY context/ .

CMD ["python3", "/main.py"]
2 changes: 1 addition & 1 deletion containers/celltypist/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ RUN pip install -r requirements-freeze.txt
ENV CELLTYPIST_FOLDER="/models"
RUN python -c "import celltypist; celltypist.models.download_models()"

COPY context/* .
COPY context/ .

CMD ["python", "/main.py"]
2 changes: 1 addition & 1 deletion containers/extract-summary/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ FROM python:3
COPY context/requirements-freeze.txt .
RUN pip install -r requirements-freeze.txt

COPY context/* .
COPY context/ .

CMD ["python", "/main.py"]
2 changes: 1 addition & 1 deletion containers/popv/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ RUN ./download-ontology.sh
COPY context/requirements-freeze.txt .
RUN pip install -r requirements-freeze.txt

COPY context/* .
COPY context/ .

CMD ["python", "/main.py"]
2 changes: 1 addition & 1 deletion containers/preprocess/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ FROM python:3
COPY context/requirements-freeze.txt .
RUN pip install -r requirements-freeze.txt

COPY context/* .
COPY context/ .

CMD ["python", "/main.py"]

0 comments on commit da42287

Please sign in to comment.