wyattjmiller.com/Dockerfile

12 lines
417 B
Docker
Raw Normal View History

2018-05-18 07:38:59 -04:00
# wyattjmiller.com Dockerfile
2018-12-28 22:42:40 -05:00
# Created by Wyatt J. Miller, published by Miller Web Solutions
2018-05-18 07:38:59 -04:00
# 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.
2019-02-13 14:03:51 -05:00
2019-10-05 22:25:05 -04:00
FROM php:7.3.10-apache
2019-02-13 14:03:51 -05:00
# RUN /bin/bash -c "cd /var/www/html && mkdir assets && mkdir css && mkdir img && mkdir webfonts"
2018-05-18 07:38:59 -04:00
COPY src/ /var/www/html
EXPOSE 80