Skip to content

Commit aa293c0

Browse files
committed
Add Docker support
Signed-off-by: RakeshPotnuru <[email protected]>
1 parent 085343e commit aa293c0

7 files changed

+492
-240
lines changed

.dockerignore

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

.prettierignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ package*.json
2121
node_modules/
2222
public/
2323
package-lock.json
24-
yarn.lock
24+
yarn.lock
25+
.dockerignore

Dockerfile

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
FROM node:16-alpine AS deps
2+
RUN apk add --no-cache libc6-compat
3+
WORKDIR /app
4+
5+
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
6+
RUN \
7+
if [ -f yarn.lock ]; then yarn --frozen-lockfile; \
8+
elif [ -f package-lock.json ]; then npm ci; \
9+
elif [ -f pnpm-lock.yaml ]; then yarn global add pnpm && pnpm i --frozen-lockfile; \
10+
else echo "Lockfile not found." && exit 1; \
11+
fi
12+
13+
14+
FROM node:16-alpine AS builder
15+
WORKDIR /app
16+
COPY --from=deps /app/node_modules ./node_modules
17+
COPY . .
18+
19+
ENV NEXT_TELEMETRY_DISABLED 1
20+
21+
RUN yarn build
22+
23+
# If using npm comment out above and use below instead
24+
# RUN npm run build
25+
26+
FROM node:16-alpine AS runner
27+
WORKDIR /app
28+
29+
ENV NODE_ENV production
30+
ENV NEXT_TELEMETRY_DISABLED 1
31+
32+
RUN addgroup --system --gid 1001 nodejs
33+
RUN adduser --system --uid 1001 nextjs
34+
35+
COPY --from=builder /app/public ./public
36+
37+
COPY --from=builder --chown=nextjs:nodejs /app/.next/standalone ./
38+
COPY --from=builder --chown=nextjs:nodejs /app/.next/static ./.next/static
39+
40+
USER nextjs
41+
42+
EXPOSE 3000
43+
44+
ENV PORT 3000
45+
46+
CMD ["node", "server.js"]

docker-compose.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: '3.8'
2+
services:
3+
app:
4+
build:
5+
context: ./
6+
target: runner
7+
volumes:
8+
- .:/app
9+
command: yarn dev
10+
ports:
11+
- "3000:3000"
12+
environment:
13+
NODE_ENV: development

git

Whitespace-only changes.

next.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ const nextConfig = {
1313
},
1414
serverRuntimeConfig: {
1515
PROJECT_ROOT: __dirname
16-
}
16+
},
17+
output: 'standalone'
1718
};
1819

1920
module.exports = nextConfig;

0 commit comments

Comments
 (0)