Last active
June 19, 2018 11:28
-
-
Save grahamg/af790063911ba120dd7c3fe17b7300f3 to your computer and use it in GitHub Desktop.
Docker DevLounge Notes (6/18/18)
This file contains hidden or 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
*Dockerfile* | |
FROM php:7.0.17-apache | |
RUN apt-get update | |
RUN apt-get install -y apt-utils vim curl sqlite3 | |
RUN pecl install xdebug | |
ADD ./db/test.db /test.db | |
ADD ./php.ini /usr/local/etc/php | |
EXPOSE 8080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment