Initial commit: Services homepage

This commit is contained in:
MayaChat
2025-11-23 22:58:59 -05:00
parent 87af7b573a
commit adeb4d472b
18 changed files with 220 additions and 0 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM nginx:alpine
LABEL maintainer="services-homepage"
COPY . /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]