-
Notifications
You must be signed in to change notification settings - Fork 880
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'projectmesa:main' into patch-15
- Loading branch information
Showing
216 changed files
with
2,720 additions
and
14,544 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
FROM python:3.10-slim | ||
# We can't use slim because we need either git/wget/curl to | ||
# download mesa-examples, and so installing them requires | ||
# updating the system anyway. | ||
# We can't use alpine because NumPy doesn't support musllinux yet. | ||
# But it's in the RC version https://github.com/numpy/numpy/issues/20089. | ||
FROM python:bookworm | ||
LABEL maintainer="rht <[email protected]>" | ||
|
||
# To use this Dockerfile: | ||
# 1. `docker build . -t mymesa_image` | ||
# 2. `docker run --name mymesa_instance -p 8521:8521 -it mymesa_image` | ||
# 3. In your browser, visit http://127.0.0.1:8521 | ||
# 2. `docker run --name mymesa_instance -p 8765:8765 -it mymesa_image` | ||
# 3. In your browser, visit http://127.0.0.1:8765 | ||
# | ||
# Currently, this Dockerfile defaults to running the Wolf-Sheep model, as an | ||
# Currently, this Dockerfile defaults to running the Schelling model, as an | ||
# illustration. If you want to run a different example, simply change the | ||
# MODEL_DIR variable below to point to another model, e.g. | ||
# examples/sugarscape_cg or path to your custom model. | ||
# /mesa-examples/examples/sugarscape_cg or path to your custom model. | ||
# You specify the MODEL_DIR (relative to this Git repo) by doing: | ||
# `docker run --name mymesa_instance -p 8521:8521 -e MODEL_DIR=examples/sugarscape_cg -it mymesa_image` | ||
# Note: the model directory MUST contain a run.py file. | ||
# `docker run --name mymesa_instance -p 8765:8765 -e MODEL_DIR=/mesa-examples/examples/sugarscape_cg -it mymesa_image` | ||
# Note: the model directory MUST contain an app.py file. | ||
|
||
ENV MODEL_DIR=examples/wolf_sheep | ||
ENV MODEL_DIR=/mesa-examples/examples/schelling_experimental | ||
|
||
# Don't buffer output: | ||
# https://docs.python.org/3.10/using/cmdline.html?highlight=pythonunbuffered#envvar-PYTHONUNBUFFERED | ||
|
@@ -24,21 +29,10 @@ WORKDIR /opt/mesa | |
|
||
COPY . /opt/mesa | ||
|
||
EXPOSE 8521/tcp | ||
|
||
# Important: we don't install python3-dev, python3-pip and so on because doing | ||
# so will install Python 3.9 instead of the already available Python 3.10 from | ||
# the base image. | ||
# The following RUN command is still provided for context. | ||
# RUN apt-get update && apt-get upgrade -y -o Dpkg::Options::="--force-confold" \ | ||
# && apt-get install -y --no-install-recommends \ | ||
# build-essential \ | ||
# python3-dev \ | ||
# python3-pip \ | ||
# python3-setuptools \ | ||
# python3-wheel \ | ||
# && rm -rf /var/lib/apt/lists/* | ||
RUN cd / && git clone https://github.com/projectmesa/mesa-examples.git | ||
|
||
EXPOSE 8765/tcp | ||
|
||
RUN pip3 install -e /opt/mesa | ||
|
||
CMD ["sh", "-c", "cd $MODEL_DIR && python3 run.py"] | ||
CMD ["sh", "-c", "cd $MODEL_DIR && solara run app.py --host=0.0.0.0"] |
Oops, something went wrong.