Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions 2-containerized/create_stack.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
aws cloudformation deploy \
--template-file infrastructure/ecs.yml \
--region ap-southeast-2 \
--stack-name BreakTheMonolith-Demo \
--capabilities CAPABILITY_NAMED_IAM
2 changes: 1 addition & 1 deletion 2-containerized/services/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mhart/alpine-node:7.10.1
FROM node:8.9.0-alpine

WORKDIR /srv
ADD . .
Expand Down