An open API service indexing awesome lists of open source software.

https://github.com/chexov/dockerfile2shell

Simple Dockerfile to shell script converter
https://github.com/chexov/dockerfile2shell

aws-ec2 devops docker

Last synced: about 2 months ago
JSON representation

Simple Dockerfile to shell script converter

Awesome Lists containing this project

README

          

Usefull for EC2 AMI creation.
Ideally output script may be used as user-data for initial instance setup.

```
cd image/
ls -l Dockerfile
dockerfile2shell.py > userdata.sh
aws ec2 run-instances --image-id ami-7f647f06 --count 1 --user-data file://$PWD/userdata.sh
```