SelfStream / Dockerfile
provatotale's picture
Create Dockerfile
aa7d08f verified
Raw
History Blame Contribute Delete
364 Bytes
FROM node:20-alpine
# Installa git (necessario su Alpine)
RUN apk add --no-cache git
WORKDIR /app
# Clona il repository direttamente nella cartella /app
RUN git clone https://github.com/provatotale/SelfStream .
# Installa le dipendenze
RUN npm install
# HF usa la porta 7860
ENV PORT=7860
EXPOSE 7860
# Compila l'addon
RUN npm run build
CMD ["npm", "start"]