2022-10-29 11:31:06 -05:00
|
|
|
# 2022-10-29 Hyperling
|
|
|
|
# Create website in node container and run it.
|
|
|
|
|
|
|
|
FROM node
|
|
|
|
|
2022-10-29 11:47:35 -05:00
|
|
|
# Dependencies
|
2022-10-29 11:31:06 -05:00
|
|
|
RUN apt update && apt install sudo
|
|
|
|
|
2022-10-29 11:47:35 -05:00
|
|
|
# Install website
|
|
|
|
RUN git clone https://github.com/Hyperling/www www
|
|
|
|
|
|
|
|
# Run website
|
2022-10-29 11:31:06 -05:00
|
|
|
RUN www/run.sh
|