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: frontend:
container_name: frontend container_name: frontend
build: build:
context: ./frontend/agentic-seek context: ./frontend
dockerfile: Dockerfile.frontend dockerfile: Dockerfile.frontend
ports: ports:
- "3000:3000" - "3000:3000"
volumes: volumes:
- ./frontend/agentic-seek/src:/app/src - ./frontend/agentic-seek-front/src:/app/src
- ./screenshots:/app/screenshots - ./screenshots:/app/screenshots
environment: environment:
- NODE_ENV=development - NODE_ENV=development

View File

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