docker file update
This commit is contained in:
parent
a550635aae
commit
41aa5b00cc
|
@ -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
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
import React from 'react'
|
||||
|
||||
const ContextMenu: React.FC = () => {
|
||||
return (
|
||||
<div>ContextMenu</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default ContextMenu
|
|
@ -2,7 +2,9 @@ import React from 'react';
|
|||
|
||||
const Tools: React.FC = () => {
|
||||
return (
|
||||
<div>Tools</div>
|
||||
<div className="tools-container">
|
||||
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
|
|
|
@ -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>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
version: "3.8"
|
||||
|
||||
services:
|
||||
dwinzo_beta:
|
||||
build:
|
||||
|
|
Loading…
Reference in New Issue