This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
readyornot/Dockerfile

52 lines
1.1 KiB
Docker
Raw Normal View History

2022-12-03 20:02:18 +00:00
## INIT STEP
# Install dependencies only when needed
2023-12-20 21:03:04 +00:00
FROM node:18-alpine AS deps
2022-12-03 20:02:18 +00:00
RUN apk add --no-cache libc6-compat
WORKDIR /app
# Copy the files needed to install deps
COPY package.json yarn.lock ./
2023-12-20 21:32:28 +00:00
RUN yarn add sharp
2022-12-03 20:02:18 +00:00
RUN yarn install --frozen-lockfile
## BUILD STEP
# Rebuild the source code only when needed
FROM node:18-alpine AS builder
2022-12-03 20:02:18 +00:00
WORKDIR /app
# Copy node_modules installed by the deps step
COPY --from=deps /app/node_modules ./node_modules
COPY . .
RUN yarn build
## RUN STEP
FROM node:18-alpine AS runner
2022-12-03 20:02:18 +00:00
2023-12-20 21:03:04 +00:00
LABEL author="neshura@neshweb.net"
2022-12-09 21:02:27 +00:00
WORKDIR /usr/src/app
2022-12-03 20:02:18 +00:00
ENV NODE_ENV production
RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs
COPY --from=builder /app/public ./public
COPY --from=builder /app/node_modules ./node_modules
# Automatically leverage output traces to reduce image size
# https://nextjs.org/docs/advanced-features/output-file-tracing
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
USER nextjs
# expose port 3000
ENV PORT 3000
EXPOSE 3000
CMD [ "yarn", "start" ]