Skip to content

Commit

Permalink
Merge pull request #9 from arnavrneo/nextjs-shift
Browse files Browse the repository at this point in the history
feat/frontend-docker-integration
  • Loading branch information
arnavrneo authored Mar 16, 2024
2 parents 05afd87 + 1f8f452 commit 4db8317
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions url-shortener/frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
FROM node:18-alpine AS deps
LABEL authors="arnavrneo"

RUN apk add --no-cache libc6-compat
WORKDIR /app

COPY package.json package-lock.json ./
RUN npm install --production

FROM node:18-alpine AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .

ENV NEXT_TELEMETRY_DISABLED 1

RUN npm run build

FROM node:18-alpine AS runner
WORKDIR /app

ENV NODE_ENV production
ENV NEXT_TELEMETRY_DISABLED 1

RUN addgroup --system --gid 1001 nodejs
RUN adduser --system --uid 1001 nextjs

COPY --from=builder --chown=nextjs:nodejs /app/.next ./.next
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/package.json ./package.json

USER nextjs

EXPOSE 3000

ENV PORT 3000

CMD ["npm", "start"]

0 comments on commit 4db8317

Please sign in to comment.