Spaces:
Sleeping
Sleeping
File size: 289 Bytes
f44af92 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | FROM node:20-slim
# Install build essentials for node-llama-cpp
RUN apt-get update && apt-get install -y python3 make g++ && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
RUN npm install
# Hugging Face Spaces uses port 7860 by default
ENV PORT=7860
EXPOSE 7860
CMD ["npm", "start"] |