Spaces:
Build error
Build error
File size: 390 Bytes
5f77770 06fe404 5f77770 06fe404 5f77770 06fe404 5f77770 06fe404 5f77770 06fe404 97e1a4d 5f77770 06fe404 5f77770 06fe404 5f77770 06fe404 5f77770 57fd46b 5f77770 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
FROM node:18-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
openssl \
default-mysql-client \
git \
&& rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/gmonarque/streamium.git
RUN cd streamium
COPY package*.json ./
COPY prisma ./prisma/
RUN npm install
COPY . .
RUN npx prisma generate
EXPOSE 7860
CMD ["npm", "run", "dev", "--", "--host"] |