first commit

This commit is contained in:
Adolfo Delorenzo 2021-10-10 14:58:44 -06:00
commit 43140e12fb
4 changed files with 11 additions and 0 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM nginx:alpine
# Bring in HexGL
COPY html /usr/share/nginx/html
COPY start_nginx.sh /
# Run nginx
CMD /start_nginx.sh

0
README.md Normal file
View File

1
html Submodule

@ -0,0 +1 @@
Subproject commit a36a4ad882b1965db47b32ee075b8015296e863b

2
start_nginx.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
/usr/sbin/nginx -g "daemon off;"