Commit abfc921a by Ned Batchelder

Scripts to make docker images

parent aebbaf02
#!/bin/bash
set -x
RELEASE_LINE=ficus
BUILD_ARGS="--build-arg OPENEDX_RELEASE=open-release/$RELEASE_LINE.master --build-arg IMAGE_PREFIX=$RELEASE_LINE/"
for image in xenial-common edxapp; do
docker build ${BUILD_ARGS} -f docker/build/$image/Dockerfile . -t edxops/$RELEASE_LINE/$image:latest
done
#!/bin/bash
set -x
for image in xenial-common edxapp; do
docker build -f docker/build/$image/Dockerfile . -t edxops/$image:latest
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment