-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDockerfile
More file actions
36 lines (26 loc) · 799 Bytes
/
Dockerfile
File metadata and controls
36 lines (26 loc) · 799 Bytes
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
# Use Node.js 22 Alpine for smaller image size
FROM node:22-alpine
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies (production only)
RUN npm ci --only=production && npm cache clean --force
# Copy source code
COPY src/ ./src/
# Create non-root user for security
RUN addgroup -g 1001 -S nodejs && \
adduser -S hellocoop -u 1001
# Change ownership to non-root user
RUN chown -R hellocoop:nodejs /app
USER hellocoop
# Expose port 3000
EXPOSE 3000
# Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:3000/health || exit 1
# Set environment variables
ENV NODE_ENV=production
ENV PORT=3000
# Start the HTTP server
CMD ["node", "src/http.js"]