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

62 lines
1.7 KiB
Docker
Raw Normal View History

2022-10-26 12:15:56 +01:00
# Install dependencies only when needed
FROM node:19 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
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
2022-10-29 16:09:03 +01:00
# Copy cached files
2023-01-06 23:00:20 +00:00
#COPY node_modules ./
2022-10-29 16:09:03 +01:00
#RUN npm i
2022-11-09 11:48:57 +00:00
RUN \
if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
elif [ -f package-lock.json ]; then npm ci; \
elif [ -f pnpm-lock.yaml ]; then yarn global add pnpm && pnpm i --frozen-lockfile; \
else echo "Lockfile not found." && exit 1; \
fi
2022-10-26 12:15:56 +01:00
# Rebuild the source code only when needed
FROM node:19 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
2022-10-26 17:13:30 +01:00
RUN yarn build
2022-10-26 12:15:56 +01:00
# Production image, copy all the files and run next
2023-01-13 23:51:10 +00:00
FROM node:19-alpine 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
RUN npm 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