This repository has been archived on 2023-11-06. You can view files and clone it, but cannot push or open issues or pull requests.
beatsaber-overlay/Dockerfile

56 lines
1.5 KiB
Docker
Raw Normal View History

2023-10-15 03:59:34 +01:00
FROM fascinated/docker-images:node-pnpm-latest as main
2022-10-26 12:15:56 +01:00
# Install dependencies only when needed
2023-10-15 03:59:34 +01:00
FROM main AS deps
2022-10-26 12:15:56 +01:00
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
2023-01-13 23:47:26 +00:00
#RUN apk add libc6-compat
2022-10-26 12:15:56 +01:00
WORKDIR /app
2022-10-29 16:01:00 +01:00
# Install dependencies based on the preferred package manager
2023-10-15 04:01:23 +01:00
COPY package.json pnpm-lock.yaml* ./
2022-11-09 11:48:57 +00:00
2023-10-15 03:59:34 +01:00
# Install node modules
RUN pnpm install --production
2022-10-26 12:15:56 +01:00
# Rebuild the source code only when needed
2023-10-15 03:59:34 +01:00
FROM main AS builder
2022-10-29 16:05:29 +01:00
WORKDIR /app
2022-10-29 16:09:03 +01:00
COPY --from=deps /app/node_modules ./node_modules
2022-10-29 16:05:29 +01:00
COPY . .
2022-10-26 12:15:56 +01:00
2022-10-26 12:28:48 +01:00
ENV NEXT_TELEMETRY_DISABLED 1
2022-10-26 12:15:56 +01:00
2022-10-26 17:18:43 +01:00
# Build the project
2023-10-15 03:59:34 +01:00
RUN pnpm build
2022-10-26 12:15:56 +01:00
# Production image, copy all the files and run next
2023-10-15 03:59:34 +01:00
FROM main AS runner
2022-10-26 12:15:56 +01:00
WORKDIR /app
ENV NODE_ENV production
2022-10-26 13:02:09 +01:00
ENV NEXT_TELEMETRY_DISABLED 1
2022-10-26 12:15:56 +01:00
2022-10-26 14:23:54 +01:00
RUN addgroup -g 1001 -S nodejs
RUN adduser -S nextjs -u 1001
2022-10-26 12:15:56 +01:00
COPY --from=builder /app/public ./public
# Automatically leverage output traces to reduce image size
# https://nextjs.org/docs/advanced-features/output-file-tracing
2022-10-26 14:42:01 +01:00
COPY --from=builder --chown=nextjs:nodejs /app/next.config.js ./
2022-10-26 14:32:25 +01:00
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
2022-10-26 14:37:25 +01:00
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
COPY --from=builder --chown=nextjs:nodejs /app/public ./.next/static
2022-10-26 12:15:56 +01:00
2023-10-15 04:04:00 +01:00
RUN pnpm setup
2023-10-15 03:59:34 +01:00
RUN pnpm i -g @beam-australia/react-env
2022-10-29 16:13:45 +01:00
2022-10-26 14:50:37 +01:00
RUN chown -R nextjs:nodejs /app
2022-10-26 14:23:54 +01:00
2022-10-26 12:15:56 +01:00
USER nextjs
EXPOSE 3000
ENV PORT 3000
CMD npx react-env --env APP_ENV && yarn start