Fix backend Dockerfile and frontend layout for client-side rendering

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-29 07:36:51 +00:00
parent e0d353fe69
commit 289ead9be7
2 changed files with 4 additions and 7 deletions

View File

@@ -6,8 +6,8 @@ WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application
COPY app.py .
# Copy application files
COPY app.py auth.py ./
# Copy schema from parent directory
COPY ../schema.json /app/schema.json

View File

@@ -1,11 +1,8 @@
'use client';
import '../styles/globals.scss';
import Navbar from '../components/Navbar';
export const metadata = {
title: 'Good Package Repo',
description: 'World\'s first good package repository',
};
export default function RootLayout({ children }) {
return (
<html lang="en">