Skip to content

Commit adb57e6

Browse files
feat: add docker support and docker scripts in package.json (#22)
1 parent 0f019d2 commit adb57e6

6 files changed

+87
-2
lines changed

.dockerignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Dockerfile
2+
.dockerignore
3+
node_modules
4+
npm-debug.log
5+
README.md
6+
.next
7+
!.next/static
8+
!.next/standalone
9+
.git

.env.example

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ STRIPE_WEBHOOK_SECRET=
88
STRIPE_CURRENCY=usd
99
ENABLE_STRIPE_TAX=
1010

11+
DOCKER=
12+
1113
NEXT_PUBLIC_LANGUAGE=en
1214

1315
# OPTIONAL:

Dockerfile

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
FROM node:20-alpine AS base
2+
3+
# Install dependencies only when needed
4+
FROM base AS deps
5+
6+
RUN apk add --no-cache libc6-compat
7+
WORKDIR /app
8+
9+
# Install dependencies based on the preferred package manager
10+
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
11+
RUN \
12+
if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
13+
elif [ -f package-lock.json ]; then npm ci; \
14+
elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm i --frozen-lockfile; \
15+
else echo "Lockfile not found." && exit 1; \
16+
fi
17+
18+
19+
# Rebuild the source code only when needed
20+
FROM base AS builder
21+
WORKDIR /app
22+
COPY --from=deps /app/node_modules ./node_modules
23+
COPY . .
24+
25+
# Disable Next.js telemetry
26+
ENV NEXT_TELEMETRY_DISABLED 1
27+
28+
# Build the Next.js application
29+
RUN \
30+
if [ -f yarn.lock ]; then yarn run build; \
31+
elif [ -f package-lock.json ]; then npm run build; \
32+
elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm run build; \
33+
else echo "Lockfile not found." && exit 1; \
34+
fi
35+
36+
# Production image, copy all the files and run next
37+
FROM base AS runner
38+
WORKDIR /app
39+
40+
ENV NODE_ENV production
41+
42+
ENV NEXT_TELEMETRY_DISABLED 1
43+
44+
RUN addgroup --system --gid 1001 nodejs
45+
RUN adduser --system --uid 1001 nextjs
46+
47+
COPY --from=builder /app/public ./public
48+
49+
# Set the correct permission for prerender cache
50+
RUN mkdir .next
51+
RUN chown nextjs:nodejs .next
52+
53+
# Automatically leverage output traces to reduce image size
54+
# https://nextjs.org/docs/advanced-features/output-file-tracing
55+
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
56+
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
57+
58+
USER nextjs
59+
60+
EXPOSE 3000
61+
62+
ENV PORT 3000
63+
64+
# server.js is created by next build from the standalone output
65+
# https://nextjs.org/docs/pages/api-reference/next-config-js/output
66+
CMD HOSTNAME="0.0.0.0" node server.js

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,12 @@ Description coming soon.
174174

175175
### Docker
176176

177-
Description coming soon.
177+
To deploy on Docker, follow these steps:
178+
179+
1. Clone this repository into an empty folder and create the .env file in the repository as described [here](#add-environment-variables).
180+
2. Set the variable DOCKER=1 in .env
181+
3. Execute `pnpm run docker:build`.
182+
4. After that, you can start the container with `pnpm run docker:run`.
178183

179184
## That's all
180185

next.config.mjs

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ const withMDX = MDX();
1010
/** @type {import('next').NextConfig} */
1111
const nextConfig = {
1212
reactStrictMode: true,
13+
output: process.env.DOCKER ? "standalone" : undefined,
1314
logging: {
1415
fetches: {
1516
fullUrl: true,

package.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
"start": "next start",
1212
"lint": "next lint",
1313
"test": "vitest",
14-
"prepare": "husky"
14+
"prepare": "husky",
15+
"docker:build": "docker build -t yournextstore .",
16+
"docker:run": "docker run -d -p 3000:3000 yournextstore"
1517
},
1618
"dependencies": {
1719
"@next/mdx": "15.0.0-canary.152",

0 commit comments

Comments
 (0)