Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 391 Bytes

File metadata and controls

13 lines (9 loc) · 391 Bytes

Case Study Examples

See lighting/xihe as an example.

External programs can be packaged into Docker containers to be used in ARCADE.

In your Dockerfile, you should provide path for both inputs and outputs. For example:

# Create expected input/output directories
RUN mkdir -p /app/inputs /app/outputs
VOLUME ["/app/inputs", "/app/outputs"]