Containerized service package/imagese build and deploy

This commit is contained in:
root
2025-05-16 22:29:36 +08:00
parent 031b7da198
commit 32f1a6bab1
26 changed files with 3279 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
FROM nginx:1.25-alpine
COPY dist/ /usr/share/nginx/html/
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]