source: Dockerfile

main
Last change on this file was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 884 bytes
Line 
1FROM node:18-alpine AS deps
2RUN apk add --no-cache libc6-compat
3
4WORKDIR /app
5COPY package.json yarn.lock ./
6RUN yarn install --frozen-lockfile
7
8FROM node:18-alpine AS builder
9WORKDIR /app
10COPY --from=deps /app/node_modules ./node_modules
11COPY . .
12
13ARG APP_ENV
14RUN yarn build -e $APP_ENV
15
16FROM node:18-alpine AS runner
17WORKDIR /app
18
19ENV NODE_ENV production
20
21RUN addgroup -g 1001 -S nodejs
22RUN adduser -S mvpmasters -u 1001
23
24COPY --from=builder /app/next.config.js ./next.config.js
25COPY --from=builder /app/public ./public
26
27# Set the correct permission for prerender cache
28RUN mkdir .next
29RUN chown mvpmasters:nodejs .next
30
31COPY --from=builder --chown=mvpmasters:nodejs /app/.next ./.next
32COPY --from=builder /app/node_modules ./node_modules
33COPY --from=builder /app/package.json ./package.json
34
35USER mvpmasters
36
37EXPOSE 3000
38
39ARG APP_ENV
40ENV APP_ENV=$APP_ENV
41CMD yarn start -e $APP_ENV
Note: See TracBrowser for help on using the repository browser.