task-manager-pro / Dockerfile
kirimdata369's picture
SOVEREIGN_LITE: Stripped Dockerfile for HF Builder Speed (v100.1)
fcf7d64
Raw
History Blame Contribute Delete
352 Bytes
# Z374_LL4M4 CLOUD PERSISTENCE ENGINE (LITE)
FROM node:20-slim
# Minimal system dependencies
RUN apt-get update && apt-get install -y \
python3 \
curl \
git \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
RUN chmod +x *.js
ENV PORT=7860
EXPOSE 7860
CMD ["node", "server.js"]