EMOTIA / frontend /Dockerfile
Manav2op's picture
Upload folder using huggingface_hub
25d0747 verified
FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of the application
COPY . .
EXPOSE 3000
CMD ["npm", "run", "dev"]