init commit

This commit is contained in:
Wyatt Miller
2018-05-18 07:38:59 -04:00
commit f7e7f7b652
28 changed files with 6869 additions and 0 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
# wyattjmiller.com Dockerfile
# Created by Wyatt J. Miller, published by Entourage Solutions
# Licensed by the MIT
#
# Copying files in the dockerfile is kind of a mess. Actually not really.
# Just remember when linking files, follow the method below.
FROM php:7.0-apache
COPY src/ /var/www/html
COPY img/ /var/www/html/img
COPY css/ /var/www/html/css
COPY webfonts/ /var/www/html/webfonts
COPY assets/ /var/www/html/assets
EXPOSE 80