mirror of
https://github.com/StepanovPlaton/torrent_frontend.git
synced 2026-04-03 12:20:48 +04:00
Create Dockerfile
This commit is contained in:
44
Dockerfile
Normal file
44
Dockerfile
Normal file
@@ -0,0 +1,44 @@
|
||||
# https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile
|
||||
|
||||
# Stage 0: Get base system
|
||||
FROM node:18-alpine AS base
|
||||
|
||||
|
||||
# Stage 1: Instal dependencies
|
||||
FROM base AS dependencies
|
||||
WORKDIR /application
|
||||
COPY package.json package-lock.json ./
|
||||
RUN npm ci
|
||||
|
||||
|
||||
# Stage 2: Build
|
||||
FROM base AS builder
|
||||
WORKDIR /application
|
||||
COPY --from=dependencies /application/node_modules ./node_modules
|
||||
COPY . .
|
||||
ENV NEXT_TELEMETRY_DISABLED 1
|
||||
RUN npm run build
|
||||
|
||||
|
||||
# Stage 3: Start
|
||||
FROM base AS runner
|
||||
WORKDIR /application
|
||||
ENV NODE_ENV production
|
||||
ENV NEXT_TELEMETRY_DISABLED 1
|
||||
|
||||
RUN addgroup --system --gid 1001 nodejs
|
||||
RUN adduser --system --uid 1001 nextjs
|
||||
|
||||
COPY --from=builder /application/public ./public
|
||||
|
||||
RUN mkdir .next
|
||||
RUN chown nextjs:nodejs .next
|
||||
COPY --from=builder --chown=nextjs:nodejs /application/.next/standalone ./
|
||||
COPY --from=builder --chown=nextjs:nodejs /application/.next/static ./.next/static
|
||||
|
||||
USER nextjs
|
||||
|
||||
EXPOSE 3000
|
||||
ENV PORT 3000
|
||||
|
||||
CMD HOSTNAME="0.0.0.0" node server.js
|
||||
Reference in New Issue
Block a user