diff --git a/2-containerized/create_stack.sh b/2-containerized/create_stack.sh new file mode 100644 index 0000000..365c98c --- /dev/null +++ b/2-containerized/create_stack.sh @@ -0,0 +1,5 @@ +aws cloudformation deploy \ + --template-file infrastructure/ecs.yml \ + --region ap-southeast-2 \ + --stack-name BreakTheMonolith-Demo \ + --capabilities CAPABILITY_NAMED_IAM diff --git a/2-containerized/services/api/Dockerfile b/2-containerized/services/api/Dockerfile index 016b240..5fd33df 100644 --- a/2-containerized/services/api/Dockerfile +++ b/2-containerized/services/api/Dockerfile @@ -1,4 +1,4 @@ -FROM mhart/alpine-node:7.10.1 +FROM node:8.9.0-alpine WORKDIR /srv ADD . .