feat: adding uuid library

This commit is contained in:
Chubby Granny Chaser
2025-10-13 18:08:41 +01:00
parent 53d81018e9
commit fc541daaed

View File

@@ -13,3 +13,11 @@ RUN yarn install --frozen-lockfile --ignore-scripts
COPY . .
RUN yarn electron-vite build
FROM nginx:alpine
COPY --from=builder /app/out/renderer /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]