File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
compose/production/frontend Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ FROM base AS runner
22
22
WORKDIR /app
23
23
COPY --from=builder /app /app
24
24
RUN mkdir -p /app/.next/cache && chmod -R 777 /app/.next/cache
25
+ RUN yarn global add serve
25
26
26
27
EXPOSE 3000
27
- CMD ["yarn" , "start" ]
28
+ # CMD ["yarn", "start"]
29
+ CMD ["yarn" , "serve" , "-s" , "build" ]
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const theme = createTheme({
15
15
} ,
16
16
typography : {
17
17
fontFamily : roboto . style . fontFamily ,
18
- } ,
18
+ }
19
19
} ) ;
20
20
21
21
export default theme ;
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import ListItemText from '@mui/material/ListItemText';
13
13
import Box from '@mui/material/Box' ;
14
14
import Button from '@mui/material/Button' ;
15
15
import LoggedUser from '@/components/LoggedUser' ;
16
+ import Chip from '@mui/material/Chip' ;
16
17
import { useAuth } from '@/contexts/AuthContext' ;
17
18
18
19
@@ -94,8 +95,8 @@ export default function Header() {
94
95
</ ListItem >
95
96
) ) }
96
97
</ List >
98
+ < Chip label = "Beta" variant = "outlined" color = "warning" size = "small" />
97
99
< Box sx = { { flexGrow : 1 } } />
98
-
99
100
{ user && (
100
101
< LoggedUser username = { user ?. username } />
101
102
) }
You can’t perform that action at this time.
0 commit comments