Monitoring_stron / Dockerfile
Antoni09's picture
Upload 7 files
27ae1fd verified
raw
history blame contribute delete
233 Bytes
FROM node:20-slim
WORKDIR /app
COPY package*.json ./
RUN npm ci --omit=dev
COPY . .
# Hugging Face Spaces exposes 7860 by default; port can be overridden via env
ENV PORT=7860
ENV DATA_DIR=/data
EXPOSE 7860
CMD ["npm", "start"]