Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
110 Bytes
FROM node:current-alpine
WORKDIR /app
COPY package*.json .
RUN npm install
COPY . .
CMD ["npm","start"]