docker file update
This commit is contained in:
parent
a550635aae
commit
41aa5b00cc
|
@ -29,7 +29,7 @@ RUN npm run build
|
||||||
FROM nginx:alpine
|
FROM nginx:alpine
|
||||||
|
|
||||||
# Copy the built Vite files from the build stage into Nginx's default HTML folder
|
# 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)
|
# Optionally copy a custom Nginx config (if needed)
|
||||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
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 = () => {
|
const Tools: React.FC = () => {
|
||||||
return (
|
return (
|
||||||
<div>Tools</div>
|
<div className="tools-container">
|
||||||
|
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@ import React from 'react';
|
||||||
import ModuleToggle from '../components/ui/ModuleToggle';
|
import ModuleToggle from '../components/ui/ModuleToggle';
|
||||||
import SideBarLeft from '../components/layout/sidebarLeft/SideBarLeft';
|
import SideBarLeft from '../components/layout/sidebarLeft/SideBarLeft';
|
||||||
import SideBarRight from '../components/layout/sidebarRight/SideBarRight';
|
import SideBarRight from '../components/layout/sidebarRight/SideBarRight';
|
||||||
|
import Tools from '../components/ui/Tools';
|
||||||
|
|
||||||
const Project: React.FC = () => {
|
const Project: React.FC = () => {
|
||||||
return (
|
return (
|
||||||
|
@ -9,6 +10,7 @@ const Project: React.FC = () => {
|
||||||
<ModuleToggle />
|
<ModuleToggle />
|
||||||
<SideBarLeft />
|
<SideBarLeft />
|
||||||
<SideBarRight />
|
<SideBarRight />
|
||||||
|
<Tools />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
version: "3.8"
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
dwinzo_beta:
|
dwinzo_beta:
|
||||||
build:
|
build:
|
||||||
|
|
Loading…
Reference in New Issue