Skip to content
docker-build.sh 401 B
Newer Older

if test "$1" = "-f"; then
        RLCONTAINER=full
        IMGNAME=inducer/relate-runcode-python-amd64-full
else
        RLCONTAINER=base
        IMGNAME=inducer/relate-runcode-python-amd64
fi

Neal Davis's avatar
Neal Davis committed
cp ../course/page/code_feedback.py .
cp ../course/page/code_run_backend.py .

docker build --no-cache --build-arg RLCONTAINER="$RLCONTAINER" . -t $IMGNAME
Neal Davis's avatar
Neal Davis committed
rm code_feedback.py code_run_backend.py