-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
65 lines (48 loc) · 1.69 KB
/
Dockerfile
File metadata and controls
65 lines (48 loc) · 1.69 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
# Build stage
FROM node:20-alpine AS builder
WORKDIR /app
# Copy package files
COPY package*.json pnpm-lock.yaml* ./
# Install pnpm and dependencies
RUN npm install -g pnpm
RUN pnpm install --frozen-lockfile
# Copy source code
COPY . .
# Build the application
RUN pnpm build
# Production stage
FROM node:20-alpine
WORKDIR /app
# Install pnpm
RUN npm install -g pnpm
# Copy built application and dependencies
COPY --from=builder /app/dist ./dist
COPY --from=builder /app/package*.json ./
COPY --from=builder /app/pnpm-lock.yaml* ./
COPY --from=builder /app/LICENSE ./
# Install production dependencies only
RUN pnpm install --prod --frozen-lockfile
# Create data directory for SQLite database
RUN mkdir -p /app/data
# Set environment variables
ENV NODE_ENV=production
ENV PORT=3001
ENV HOST=0.0.0.0
ENV DATABASE_PATH=/app/data/env-manager.db
# Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD node -e "require('http').get('http://localhost:3001/api/health', (r) => {r.statusCode === 200 ? process.exit(0) : process.exit(1)})"
# Expose port
EXPOSE 3001
# Volume for data persistence
VOLUME ["/app/data"]
# Attribution notice
LABEL maintainer="BuildAppolis <dev@buildappolis.com>"
LABEL org.opencontainers.image.source="https://github.com/buildappolis/env-manager"
LABEL org.opencontainers.image.vendor="BuildAppolis"
LABEL org.opencontainers.image.title="BuildAppolis Env-Manager"
LABEL org.opencontainers.image.description="Enterprise-grade environment variable management system"
LABEL org.opencontainers.image.url="https://www.buildappolis.com"
LABEL org.opencontainers.image.licenses="BuildAppolis-License"
# Start the application
CMD ["node", "dist/server/entry.mjs"]