5 lines
81 B
Docker
5 lines
81 B
Docker
FROM php:7-apache
|
|
COPY ./ /var/www/html/
|
|
RUN mkdir /var/www/html/files
|
|
EXPOSE 80
|