PHP Classes

File: Dockerfile

Recommend this page to a friend!
  Classes of Karl Holz   eKatab PHP ePub Reader   Dockerfile   Download  
File: Dockerfile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: eKatab PHP ePub Reader
Display ebooks in the epub format on Web pages
Author: By
Last change: Update of Dockerfile
Date: 1 year ago
Size: 285 bytes
 

Contents

Class file image Download
FROM debian:buster-20210329-slim RUN apt-get update && apt-get -y install php-zip php-xsl php-xml php-cli COPY . APP RUN bash /APP/install.sh EXPOSE 8080 # generate start server script RUN echo -e "#!/bin/bash\ncd /APP\nphp -S 0.0.0.0:8080 -d ." > /start.sh CMD [ "bash", "/start.sh" ]