mirror of
https://github.com/JHUAPL/SIMoN.git
synced 2026-01-09 14:57:56 -05:00
10 lines
245 B
Docker
10 lines
245 B
Docker
# build from the base model image (required)
|
|
FROM simon-model:latest
|
|
|
|
# install dependencies
|
|
COPY requirements.txt /
|
|
RUN pip3 install -r /requirements.txt
|
|
|
|
# run the inner wrapper (required)
|
|
CMD ["python3", "/opt/src/inner_wrapper.py"]
|