lofi-remix-api-backup / Dockerfile
imran056's picture
Create Dockerfile
33b789a verified
raw
history blame contribute delete
197 Bytes
FROM node:18-alpine
RUN apk add --no-cache ffmpeg
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
RUN mkdir -p uploads outputs
EXPOSE 7860
CMD ["node", "server.js"]