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.

12 lines
216 B

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