Skip to content

Instantly share code, notes, and snippets.

@gcphost
Created September 12, 2016 16:00
Show Gist options
  • Save gcphost/576f808bb55abbf7cfd74103243d9654 to your computer and use it in GitHub Desktop.
Save gcphost/576f808bb55abbf7cfd74103243d9654 to your computer and use it in GitHub Desktop.
Docker, Rancher, and Laravel: Easy and Safe Scalability! Dockerfile
FROM ubuntu
RUN apt-get update
RUN apt-get install -y php
RUN mkdir -p /var/www
EXPOSE 8999
ENTRYPOINT php -S 0.0.0.0:8999 -t /var/www
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment