career_app / Dockerfile.dev.frontend
Youngger9765
Add Next.js + FastAPI configuration for Hugging Face Spaces
3dd2bab
raw
history blame contribute delete
125 Bytes
FROM node:18-slim
WORKDIR /app
COPY frontend/package*.json ./
RUN npm install
COPY frontend/ ./
CMD ["npm", "run", "dev"]