wyattjmiller.com/Dockerfile
2018-12-28 22:42:40 -05:00

14 lines
505 B
Docker

# wyattjmiller.com Dockerfile
# Created by Wyatt J. Miller, published by Miller Web Solutions
# Licensed by the MIT
#
# Copying files in the dockerfile is kind of a mess. Actually not really.
# Just remember when linking files in code, follow the method below.
FROM php:7.0-apache
RUN /bin/bash -c "cd /var/www/html && mkdir assets && mkdir css && mkdir img && mkdir webfonts"
COPY src/ /var/www/html
COPY img/ /var/www/html/img
COPY css/ /var/www/html/css
COPY webfonts/ /var/www/html/webfonts
EXPOSE 80