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
238 B

FROM php:8.1-fpm-alpine
RUN apk update \
&& apk add sqlite \
&& apk add socat
# 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