File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 11# uv + Python 3.10 preinstalled
22FROM ghcr.io/astral-sh/uv:python3.10-bookworm
3- WORKDIR /root /cbioportal_export/
3+ WORKDIR /workspace /cbioportal_export
44
55COPY . .
66
77RUN uv sync --frozen --no-dev
88
9+ # make sure any UID can read/traverse
10+ RUN chmod -R a+rX /workspace/bioportal_export
11+
912# from here on, use uv run or call python in .venv explicitly
10- ENV PATH="/root /cbioportal_export/.venv/bin:$PATH"
13+ ENV PATH="/workspace /cbioportal_export/.venv/bin:$PATH"
1114
12- WORKDIR /root /
15+ WORKDIR /workspace /
1316
1417# clone dep repos
1518RUN git clone https://github.com/rxu17/datahub-study-curation-tools.git -b upgrade-to-python3
1619RUN git clone https://github.com/cBioPortal/cbioportal.git -b v6.3.2
1720
18- WORKDIR /root/cbioportal_export/
21+ RUN chmod -R a+rX /workspace/datahub-study-curation-tools /workspace/cbioportal
22+
23+
24+ WORKDIR /workspace/cbioportal_export
You can’t perform that action at this time.
0 commit comments