Skip to content

Instantly share code, notes, and snippets.

@jgardezi
Last active July 20, 2018 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgardezi/36fe5a8cd4b9ffd22e70c84b40dbdf63 to your computer and use it in GitHub Desktop.
Save jgardezi/36fe5a8cd4b9ffd22e70c84b40dbdf63 to your computer and use it in GitHub Desktop.
ci-container
# Use an official Nodejs runtime as a parent image
FROM node:8.11.3
MAINTAINER Javed Gardezi <s.m.j.k.g@hotmail.com>
RUN apt-get update && \
apt-get install -y python-dev python-pip
RUN pip install --upgrade pip
RUN pip install --upgrade awscli
# Install nodejs `ecs-deploy` package for build image deployment to ecs cluster.
RUN yarn global add ecs-deploy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment