rag-full / ui /Dockerfile
Junranl's picture
Upload folder using huggingface_hub
6e1a53e verified
raw
history blame contribute delete
126 Bytes
FROM node:21-slim
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install
COPY . .
EXPOSE 3000
CMD ["yarn", "dev"]