agenticSeek/frontend/Dockerfile.frontend
2025-04-16 21:00:08 +02:00

16 lines
267 B
Docker

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"]