Updated image to node:lts-alpine

This commit is contained in:
Eric Gullickson
2025-12-20 12:16:58 -06:00
parent 065fed8d98
commit 513df9c027
4 changed files with 7 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
# Production Dockerfile for MotoVaultPro Backend
# Stage 1: Build stage
FROM node:20-alpine AS builder
FROM node:lts-alpine AS builder
# Install build dependencies
RUN apk add --no-cache dumb-init git curl
@@ -22,7 +22,7 @@ COPY . .
RUN npm run build
# Stage 2: Production runtime
FROM node:20-alpine AS production
FROM node:lts-alpine AS production
# Install runtime dependencies only
RUN apk add --no-cache dumb-init curl