-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
65 lines (43 loc) · 1.69 KB
/
Dockerfile
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
##### DEPENDENCIES
FROM --platform=linux/amd64 node:20-alpine AS deps
# RUN apk add --no-cache libc6-compat openssl1.1-compat
WORKDIR /app
# Install Prisma Client - remove if not using Prisma
COPY prisma ./
# Install dependencies based on the preferred package manager
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml\* ./
RUN npm i
##### BUILDER
FROM --platform=linux/amd64 node:20-alpine AS builder
ARG DATABASE_URL
ARG NEXT_PUBLIC_CLIENTVAR
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
# ENV NEXT_TELEMETRY_DISABLED 1
RUN npm run build
# RUN \
# if [ -f yarn.lock ]; then yarn build; \
# elif [ -f package-lock.json ]; then npm run build; \
# elif [ -f pnpm-lock.yaml ]; then yarn global add pnpm && pnpm run build; \
# else echo "Lockfile not found." && exit 1; \
# f
##### RUNNER
FROM --platform=linux/amd64 gcr.io/distroless/nodejs20-debian12 AS runner
WORKDIR /app
ENV NODE_ENV production
# ENV NEXT_TELEMETRY_DISABLED 1
COPY --from=builder /app/next.config.js ./
COPY --from=builder /app/public ./public
COPY --from=builder /app/package.json ./package.json
COPY --from=builder /app/.next/standalone ./
COPY --from=builder /app/.next/static ./.next/static
EXPOSE 3000
ENV PORT 3000
ENV DATABASE_URL "postgresql://tanuedu128:8cMF2lUeWxsP@ep-steep-snowflake-a16e4wvg.ap-southeast-1.aws.neon.tech/neondb?sslmode=require"
ENV NEXTAUTH_URL "https://chat-appfrontend.azurewebsites.net/"
ENV NEXTAUTH_SECRET "my_secret_2"
ENV GOOGLE_ID "42552123265-msoo43qqlhvchgc5hpg85iidj9a4eq4e.apps.googleusercontent.com"
ENV GOOGLE_SECRET "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"
ENV SOCKET_URL "wss://chat-backend-v1-zk3f.onrender.com"
CMD ["server.js"]