File tree 7 files changed +492
-240
lines changed
7 files changed +492
-240
lines changed Original file line number Diff line number Diff line change
1
+ Dockerfile
2
+ .dockerignore
3
+ node_modules
4
+ npm-debug.log
5
+ README.md
6
+ .next
7
+ .git
8
+ yarn-error.log
Original file line number Diff line number Diff line change @@ -21,4 +21,5 @@ package*.json
21
21
node_modules /
22
22
public /
23
23
package-lock.json
24
- yarn.lock
24
+ yarn.lock
25
+ .dockerignore
Original file line number Diff line number Diff line change
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" ]
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ const nextConfig = {
13
13
} ,
14
14
serverRuntimeConfig : {
15
15
PROJECT_ROOT : __dirname
16
- }
16
+ } ,
17
+ output : 'standalone'
17
18
} ;
18
19
19
20
module . exports = nextConfig ;
You can’t perform that action at this time.
0 commit comments