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
+16
View File
@@ -0,0 +1,16 @@
FROM node:18
WORKDIR /app
# Install dependencies
COPY agentic-seek-front/package.json agentic-seek-front/package-lock.json ./
RUN npm install
# Copy application code
COPY .agentic-seek-front/ .
# Expose port
EXPOSE 3000
# Run the application
CMD ["npm", "start"]