Skip to content

Commit

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

COPY context/* .

ENTRYPOINT ["python3", "/main.py"]
CMD ["python3", "/main.py"]
4 changes: 3 additions & 1 deletion containers/azimuth/pipeline.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ requirements:
types:
- $import: ./options.yml

baseCommand: python3 /main.py
baseCommand: python3
arguments:
- /main.py

inputs:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion containers/celltypist/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ RUN python -c "import celltypist; celltypist.models.download_models()"

COPY context/* .

ENTRYPOINT ["python", "/main.py"]
CMD ["python", "/main.py"]
4 changes: 3 additions & 1 deletion containers/celltypist/pipeline.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ requirements:
types:
- $import: ./options.yml

baseCommand: python /main.py
baseCommand: python
arguments:
- /main.py

inputs:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion containers/extract-summary/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ RUN pip install -r requirements-freeze.txt

COPY context/* .

ENTRYPOINT ["python", "/main.py"]
CMD ["python", "/main.py"]
4 changes: 3 additions & 1 deletion containers/extract-summary/pipeline.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ requirements:
types:
- $import: ./options.yml

baseCommand: python /main.py
baseCommand: python
arguments:
- /main.py

inputs:
annotations:
Expand Down
2 changes: 1 addition & 1 deletion containers/popv/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ RUN pip install -r requirements-freeze.txt

COPY context/* .

ENTRYPOINT ["python", "/main.py"]
CMD ["python", "/main.py"]
4 changes: 3 additions & 1 deletion containers/popv/pipeline.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ requirements:
types:
- $import: ./options.yml

baseCommand: python /main.py
baseCommand: python
arguments:
- /main.py

inputs:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion containers/preprocess/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ RUN pip install -r requirements-freeze.txt

COPY context/* .

ENTRYPOINT ["python", "/main.py"]
CMD ["python", "/main.py"]
4 changes: 3 additions & 1 deletion containers/preprocess/pipeline.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ requirements:
types:
- $import: ./options.yml

baseCommand: python /main.py
baseCommand: python
arguments:
- /main.py

inputs:
matrix:
Expand Down

0 comments on commit b74993e

Please sign in to comment.