Simple website with some JavaScript games.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
216 B

FROM php:7.4.3-fpm-alpine3.11
RUN docker-php-ext-install mysqli
# Copy the php config file
COPY ./php-fpm.conf /usr/local/etc/php-fpm.d/www.conf
# Copy the application code
COPY . /app
VOLUME ["/app"]
RUN ls -la