docker: pin images to specific versions for more reproducibility

This commit is contained in:
Lucas Silva 2026-03-13 23:45:39 -03:00
parent 54540f8faf
commit d06aaf7246

View file

@ -1,5 +1,5 @@
# Node Alpine -- multi-arch (amd64 + arm64)
FROM node:lts-alpine AS builder
FROM node:24.14-alpine AS builder
WORKDIR /app
@ -26,7 +26,7 @@ COPY . .
RUN bun run build
# Serve with nginx
FROM nginx:alpine
FROM nginx:1.28.2-alpine
COPY --from=builder /app/dist /usr/share/nginx/html