Skip to content

Docker image containing the required dependencies for CS4246 tasks

Notifications You must be signed in to change notification settings

cs4246/docker-base

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

CS4246 Docker Base

Docker image with built-in environment and simulator for CS4246 course.

Usage

Pull the image:

docker pull cs4246/base

Run your program inside the container:

cd /path/to/your/program

Linux / Mac

docker run -it --rm -v $PWD:/workspace cs4246/base <command>

Windows

docker run -it --rm -v %cd%:/workspace cs4246/base <command>

Examples

For example, if you want to run python train.py inside /home/cs4246/hw1, you can do:

cd /home/cs4246/hw1

Linux / Mac

docker run -it --rm -v $PWD:/workspace cs4246/base python train.py

Windows

cd /home/cs4246/hw1
docker run -it --rm -v %cd%:/workspace cs4246/base python train.py

About

Docker image containing the required dependencies for CS4246 tasks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published