ghsk/vff
0
1# Use Node.js 18 as base image2FROM node:183 4# Set working directory5WORKDIR /app6 7# Copy package.json and install dependencies8COPY package.json .9RUN npm install express cors axios node-fetch yt-search@2.13.110 11# Copy the app.js file12COPY app.js .13 14# Expose the port (Hugging Face Spaces default)15EXPOSE 786016 17# Command to run the application18CMD ["node", "app.js"]