Skip to content

BrewedAlgorithms/NexuroNexus_Adobe_1B

Repository files navigation

NexuroNexus_Adobe_1B

Dockerized Setup

1. Build the Docker Image

Use the following command to build the Docker image (replace mysolutionname:somerandomidentifier with your preferred image name and tag):

docker build --platform linux/amd64 -t mysolutionname:somerandomidentifier .

2. Run the Docker Container

To run the solution, mount your input and output directories as follows:

docker run --rm -v $(pwd)/input:/app/input -v $(pwd)/output:/app/output --network none mysolutionname:somerandomidentifier
  • $(pwd)/input should contain your input files (e.g., PDFs, JSONs).
  • $(pwd)/output will be used to store the output files generated by the solution.
  • The container runs with no network access for security.

3. Default Command

By default, the container runs:

python run_all_challenges.py

You can override this command if needed by appending your own command to the docker run invocation.


Project Structure

  • requirements.txt — Python dependencies
  • run_all_challenges.py — Main entry point
  • app/ — Application code and models
  • src/ — Source code modules

Notes

  • Ensure your input files are placed in the input directory before running the container.
  • Outputs will be available in the output directory after execution.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published