Skip to content

Instantly share code, notes, and snippets.

@diogocapela
Last active December 12, 2017 14:04
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 diogocapela/c0cc1ef1736224f0c2b44d4711bae882 to your computer and use it in GitHub Desktop.
Save diogocapela/c0cc1ef1736224f0c2b44d4711bae882 to your computer and use it in GitHub Desktop.
Dockerfiles
FROM node
WORKDIR /src
ADD . /src
RUN yarn
EXPOSE 3000
CMD ["npm", "start"]
FROM php:7.0-apache
COPY . /var/www/html/
// $ docker build -t my-php-app .
// $ docker run -d my-php-app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment