Move MarkdownRender to new namespace

This commit is contained in:
Alex Ellis
2017-03-22 09:19:15 +00:00
parent 65ae7b3e2d
commit ebf7427211
7 changed files with 26 additions and 13 deletions

View File

@ -1,12 +1,12 @@
#!/bin/sh
echo Building alexellis2/faas-markdownrender:build
echo Building functions/markdownrender:build
docker build --build-arg https_proxy=$https_proxy --build-arg http_proxy=$http_proxy \
-t alexellis2/faas-markdownrender . -f Dockerfile.build
-t functions/markdownrender . -f Dockerfile.build
docker create --name render_extract alexellis2/faas-markdownrender
docker create --name render_extract functions/markdownrender
docker cp render_extract:/go/src/app/app ./app
docker rm -f render_extract
echo Building alexellis2/faas-markdownrender:latest
docker build --no-cache -t alexellis2/faas-markdownrender:latest .
echo Building functions/markdownrender:latest
docker build --no-cache -t functions/markdownrender:latest .