updates to breadcrumbs; start working on deploy setup

This commit is contained in:
2023-05-13 21:11:59 -07:00
parent 9391a42718
commit 9437d80106
19 changed files with 402 additions and 74 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM --platform=arm64 nginx
EXPOSE 80
# actual web content
COPY www/ /usr/share/nginx/html
# nginx config files
COPY conf/nginx.conf /etc/nginx/nginx.conf
COPY conf/default.conf /etc/nginx/conf.d/default.conf
COPY conf/mime.types /etc/nginx/mime.types