-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: docker compatibility with single instance next application
- Loading branch information
Showing
2 changed files
with
26 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,21 @@ | ||
FROM node:17-alpine AS deps | ||
FROM node:18-alpine AS builder | ||
|
||
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed. | ||
RUN apk add --no-cache libc6-compat | ||
|
||
WORKDIR /app | ||
|
||
COPY package.json yarn.lock ./ | ||
|
||
RUN yarn install --frozen-lockfile | ||
|
||
FROM node:17-alpine AS builder | ||
|
||
WORKDIR /app | ||
|
||
COPY --from=deps /app/node_modules ./node_modules | ||
COPY . . | ||
|
||
ARG API_URL | ||
|
||
ENV NEXT_TELEMETRY_DISABLED=1 | ||
ENV API_URL=${API_URL:-http://localhost:3000} | ||
|
||
RUN yarn build | ||
RUN corepack enable && corepack prepare pnpm@latest --activate | ||
RUN pnpm install --frozen-lockfile | ||
|
||
FROM node:17-alpine AS runner | ||
|
||
WORKDIR /app | ||
|
||
ARG NODE_ENV | ||
ARG DATABASE_URL | ||
|
||
ENV NEXT_TELEMETRY_DISABLED=1 | ||
ENV NODE_ENV=${NODE_ENV:-production} | ||
|
||
RUN addgroup --system --gid 1001 nodejs | ||
RUN adduser --system --uid 1001 nextjs | ||
|
||
COPY --from=builder /app/next.config.mjs ./ | ||
COPY --from=builder /app/public ./public | ||
COPY --from=builder /app/package.json ./package.json | ||
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./ | ||
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static | ||
|
||
USER nextjs | ||
|
||
ENV PORT=3001 | ||
ENV DATABASE_URL=${DATABASE_URL} | ||
ENV DRIFT_URL=${DRIFT_URL:-http://localhost:3000} | ||
|
||
EXPOSE 3001 | ||
RUN pnpm prisma && pnpm build | ||
|
||
CMD ["node", "server.js"] | ||
CMD pnpm start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters