Changes to be committed:

modified:   README.md
	new file:   beloit/menu.png
	new file:   clay/menu.png
	new file:   docker.sh
	new file:   docker/Dockerfile
	new file:   docker/entrypoint.sh
	new file:   index.html
	new file:   setup.sh
	new file:   st_marys/menu.png
	new file:   startup.sh
This commit is contained in:
2026-01-21 18:34:28 -06:00
parent 0e7951d2ce
commit 5c9a1d17c3
10 changed files with 114 additions and 0 deletions

11
docker/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM nginx:latest
ENV LOCATION=clay
RUN apt-get update && apt-get install -y git
COPY entrypoint.sh /entrypoint.sh
RUN sed -i 's/\r$//' /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]