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.

15 lines
273 B

  1. FROM php:7.4.3-fpm-alpine3.11
  2. RUN apk update \
  3. && apk add sqlite \
  4. && apk add socat \
  5. && apk add php-sqlite3
  6. # Copy the php config file
  7. COPY ./php-fpm.conf /usr/local/etc/php-fpm.d/www.conf
  8. # Copy the application code
  9. COPY . /app
  10. VOLUME ["/app"]
  11. RUN ls -la