Skip to content

Commit d451d57

Browse files
committed
install in docker
1 parent 8599620 commit d451d57

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,12 @@ RUN make -j4 pyopenms
163163
WORKDIR /openms-build_py/pyOpenMS
164164
RUN pip install dist/*.whl
165165

166+
# install rescore
167+
# Copy the package into the image
168+
COPY ./nuxl_rescore/nuxl_rescore-0.0.1.tar.gz /tmp/nuxl_rescore-0.0.1.tar.gz
169+
# Install it
170+
RUN pip install /tmp/nuxl_rescore-0.0.1.tar.gz
171+
166172
# Prepare and run streamlit app.
167173
FROM compile-openms AS run-app
168174
# Create workdir and copy over all streamlit related files/folders.

environment.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ dependencies:
1111
- mono==6.12.0.90
1212
- numpy==1.22.4 #dependency depend on pyopenms version
1313
- pip: # dependencies only available through pip
14-
# streamlit dependencies
15-
- ./nuxl_rescore/nuxl_rescore-0.0.1.tar.gz
14+
# streamlit dependencies
1615
- streamlit==1.38.0
1716
- streamlit-plotly-events==0.0.6
1817
- streamlit-aggrid==0.3.4.post3

0 commit comments

Comments
 (0)