docker file update

This commit is contained in:
Vishnu 2025-03-19 11:06:55 +05:30
parent a550635aae
commit 41aa5b00cc
5 changed files with 15 additions and 4 deletions

View File

@ -29,7 +29,7 @@ RUN npm run build
FROM nginx:alpine
# Copy the built Vite files from the build stage into Nginx's default HTML folder
COPY --from=development /frontend/dist /usr/share/nginx/html
COPY --from=development /frontend/dist /usr/share/nginx/html/dist
# Optionally copy a custom Nginx config (if needed)
COPY nginx.conf /etc/nginx/conf.d/default.conf

View File

@ -0,0 +1,9 @@
import React from 'react'
const ContextMenu: React.FC = () => {
return (
<div>ContextMenu</div>
)
}
export default ContextMenu

View File

@ -2,7 +2,9 @@ import React from 'react';
const Tools: React.FC = () => {
return (
<div>Tools</div>
<div className="tools-container">
</div>
);
};

View File

@ -2,6 +2,7 @@ import React from 'react';
import ModuleToggle from '../components/ui/ModuleToggle';
import SideBarLeft from '../components/layout/sidebarLeft/SideBarLeft';
import SideBarRight from '../components/layout/sidebarRight/SideBarRight';
import Tools from '../components/ui/Tools';
const Project: React.FC = () => {
return (
@ -9,6 +10,7 @@ const Project: React.FC = () => {
<ModuleToggle />
<SideBarLeft />
<SideBarRight />
<Tools />
</div>
);
};

View File

@ -1,5 +1,3 @@
version: "3.8"
services:
dwinzo_beta:
build: