-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
69 lines (47 loc) · 1.58 KB
/
Dockerfile
File metadata and controls
69 lines (47 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Multi-stage Dockerfile for AdonisJS application
# Stage 1: Dependencies
FROM node:24-alpine AS dependencies
# Install pnpm
RUN corepack enable && corepack prepare pnpm@latest --activate
WORKDIR /app
# Copy package files
COPY package.json pnpm-lock.yaml ./
# Install dependencies
RUN pnpm install --frozen-lockfile
# Stage 2: Build
FROM node:24-alpine AS build
RUN corepack enable && corepack prepare pnpm@latest --activate
WORKDIR /app
# Copy dependencies from previous stage
COPY --from=dependencies /app/node_modules ./node_modules
# Copy source code
COPY . .
# Build the application
RUN pnpm build
# Prune dev dependencies
RUN pnpm install --prod --frozen-lockfile
# Stage 3: Production
FROM node:24-alpine AS production
# Install dumb-init for proper signal handling
RUN apk add --no-cache dumb-init
# Create app user
RUN addgroup -g 1001 -S nodejs && \
adduser -S nodejs -u 1001
WORKDIR /app
# Copy built application
COPY --from=build --chown=nodejs:nodejs /app/build ./
COPY --from=build --chown=nodejs:nodejs /app/node_modules ./node_modules
# Copy entrypoint script
COPY --chown=nodejs:nodejs docker-entrypoint.js ./
RUN chmod +x ./docker-entrypoint.js
# Switch to non-root user
USER nodejs
# Expose port
EXPOSE 3333
# Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=40s --retries=3 \
CMD node -e "require('http').get('http://localhost:3333', (r) => {process.exit(r.statusCode === 200 ? 0 : 1)})"
# Run migrations then start the application
# We can remove migration if we use multiple containers
ENTRYPOINT ["dumb-init", "--"]
CMD ["node", "docker-entrypoint.js"]