Gioobc's picture
fast server for auditory of acts
5273cd2 verified
FROM node:20
# Instalamos unzip para los paquetes
RUN apt-get update && apt-get install -y unzip && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
# Creamos las carpetas necesarias con permisos
RUN mkdir -p storage temp && chmod 777 storage temp
EXPOSE 7860
ENV PORT=7860
CMD ["node", "index.js"]