refactor : frontend

This commit is contained in:
martin legrand 2025-04-16 21:00:08 +02:00
parent d5a07c11db
commit ad21f66a44
4 changed files with 4 additions and 4 deletions

View File

@ -52,12 +52,12 @@ services:
frontend:
container_name: frontend
build:
context: ./frontend/agentic-seek
context: ./frontend
dockerfile: Dockerfile.frontend
ports:
- "3000:3000"
volumes:
- ./frontend/agentic-seek/src:/app/src
- ./frontend/agentic-seek-front/src:/app/src
- ./screenshots:/app/screenshots
environment:
- NODE_ENV=development

View File

@ -3,11 +3,11 @@ FROM node:18
WORKDIR /app
# Install dependencies
COPY package.json package-lock.json ./
COPY agentic-seek-front/package.json agentic-seek-front/package-lock.json ./
RUN npm install
# Copy application code
COPY . .
COPY .agentic-seek-front/ .
# Expose port
EXPOSE 3000