Skip to content

Instantly share code, notes, and snippets.

@j3tm0t0
Created April 29, 2014 08:41
Show Gist options
  • Save j3tm0t0/11394230 to your computer and use it in GitHub Desktop.
Save j3tm0t0/11394230 to your computer and use it in GitHub Desktop.
sample Dockerfile for apache httpd on Amazon Linux on docker on beanstalk
FROM j3tm0t0/amzn
RUN yum -y install httpd
RUN echo hoge > /var/www/html/index.html
CMD ["/usr/sbin/httpd","-D","FOREGROUND"]
EXPOSE 80
@RajeshwaranM
Copy link

How to create a Docker file Amazon Linux with easy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment