Skip to content

Commit

Permalink
adjusted dockerfile and removed failing deps
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPatrie committed Jan 7, 2024
1 parent adbe15e commit 94629c4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ RUN wget https://download.opensuse.org/repositories/home:/dilawar/xUbuntu_22.04/
# Install the downloaded package
RUN dpkg -i smoldyn_2.64.4-1+2.1_amd64.deb

# Set environment variables to avoid user interaction during package installation
ENV DEBIAN_FRONTEND=noninteractive

# Update package lists and install Python 3 and pip
RUN apt-get update && apt-get install -y \
python3 \
Expand Down
4 changes: 2 additions & 2 deletions biosimulator_processes/tests/test_smoldyn.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from process_bigraph import Composite, pf
from process_bigraph import Composite
# from biosimulator_processes.smoldyn_process import SmoldynProcess


Expand Down Expand Up @@ -53,7 +53,7 @@ def test_process():

# gather results
results = workflow.gather_results()
print(f'RESULTS: {pf(results)}')
print(f'RESULTS: {results}')


# def manually_test_process():
Expand Down
2 changes: 1 addition & 1 deletion scripts/run-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
docker buildx create --name biosimbuilder --use
docker buildx inspect --bootstrap
docker buildx build --platform linux/amd64 -t biosimulator-processes . \
&& docker run biosimulator-processes
&& docker run -it biosimulator-processes
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"process-bigraph",
"numpy",
"pytest>=6.2.5",
# "tellurium",
"tellurium",
"copasi-basico",
"cobra"
],
Expand Down

0 comments on commit 94629c4

Please sign in to comment.