add Vue 3 subproject

This commit is contained in:
2026-04-05 03:16:02 +02:00
parent 92ddf5e95f
commit b81a38e650
15 changed files with 488 additions and 1 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ RUN npm install -g @vue/cli
COPY . /app
RUN npm run build
FROM nginx:1.29.0-alpine
FROM docker.io/library/nginx:1.29.0-alpine
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]