Last active
July 20, 2018 04:19
-
-
Save jgardezi/36fe5a8cd4b9ffd22e70c84b40dbdf63 to your computer and use it in GitHub Desktop.
ci-container
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use an official Nodejs runtime as a parent image | |
FROM node:8.11.3 | |
MAINTAINER Javed Gardezi <[email protected]> | |
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