Improved docker compose integration
This commit is contained in:
+5
-1
@@ -10,7 +10,11 @@ RUN npm run build
|
||||
FROM node:lts-alpine
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
COPY .env ./
|
||||
|
||||
ARG SUNO_COOKIE
|
||||
RUN if [ -z "$SUNO_COOKIE" ]; then echo "SUNO_COOKIE is not set" && exit 1; fi
|
||||
ENV SUNO_COOKIE=${SUNO_COOKIE}
|
||||
|
||||
RUN npm install --only=production
|
||||
COPY --from=builder /src/.next ./.next
|
||||
EXPOSE 3000
|
||||
|
||||
Reference in New Issue
Block a user