Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

dartsim/dart-ci-docker-containers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dart-ci-docker-containers

Publish Docker image

This repository contains the Dockerfiles for the Docker images to build DART. The docker images are hosted on Docker Hub.

To pull the images,

docker pull jslee02/dart-dev:<tagname>

The available tags can be found here.

To launch the containers,

docker run -i --tty jslee02/dart-dev:<tagname>

To build DART in the container,

# In a shell
docker run -i --tty \
  -v <path_to_dart_source>:<dart_source_in_container> \
  jslee02/dart-dev:<tagname>

# In the container
cd <dart_source_in_container>
mkdir build && cd build
cmake ..
make -j