2022-10-29 11:31:06 -05:00
|
|
|
# 2022-10-29 Hyperling
|
|
|
|
# Create website in node container and run it.
|
|
|
|
|
2023-07-23 02:32:53 +00:00
|
|
|
# Using Debian testing so that we use PHP >8. Otherwise the shebangs from
|
2022-10-30 08:05:41 -05:00
|
|
|
# the include files (#!/usr/bin/php) show up on the website.
|
|
|
|
FROM debian:testing
|
|
|
|
|
|
|
|
# Install Dependencies
|
|
|
|
RUN apt update && apt install -y sudo php-fpm nodejs npm
|
|
|
|
|
|
|
|
# Run Website
|
|
|
|
CMD rm -rfv www && \
|
|
|
|
git clone https://github.com/Hyperling/www www && \
|
2023-07-23 02:32:53 +00:00
|
|
|
cd www && \
|
|
|
|
./run.sh
|