Augustordiaz's picture
Upload folder using huggingface_hub
227cf90 verified
Raw
History Blame Contribute Delete
255 Bytes
FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY . .
# Expose port
EXPOSE 3000
# Start development server
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]