Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# AI Development Environment Dockerfile
FROM node:18-alpine
FROM node:22-alpine@sha256:757ec364de4d37cedf30871be2988927660834e656e9aa52aad9ac194814c30c

# Install system dependencies
RUN apk add --no-cache \
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Node.js backend service Dockerfile
FROM node:18-alpine
FROM node:22-alpine@sha256:757ec364de4d37cedf30871be2988927660834e656e9aa52aad9ac194814c30c

# Install dumb-init for proper signal handling
RUN apk add --no-cache dumb-init curl
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Node.js blockchain service Dockerfile
FROM node:18-alpine
FROM node:22-alpine@sha256:757ec364de4d37cedf30871be2988927660834e656e9aa52aad9ac194814c30c

# Install dumb-init for proper signal handling
RUN apk add --no-cache dumb-init curl
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM caddy:2.7-alpine
FROM caddy:2.11-alpine@sha256:3739ea4f0c877259a693d932693cf8f3408e9a9497c004f031b0e830e93e1546

# Copy custom Caddyfile
COPY Caddyfile /etc/caddy/Caddyfile
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/examples/ecs-deployments/meteor-app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Multi-stage build for Meteor.js application
FROM node:18-alpine AS builder
FROM node:22-alpine@sha256:757ec364de4d37cedf30871be2988927660834e656e9aa52aad9ac194814c30c AS builder

# Install Meteor
RUN npm install -g meteor
Expand All @@ -21,7 +21,7 @@ RUN meteor npm install
RUN meteor build --directory /app/build --architecture os.linux.x86_64

# Production stage
FROM node:18-alpine
FROM node:22-alpine@sha256:757ec364de4d37cedf30871be2988927660834e656e9aa52aad9ac194814c30c

# Install dumb-init for proper signal handling
RUN apk add --no-cache dumb-init
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Node.js streaming platform Dockerfile
FROM node:18-alpine
FROM node:22-alpine@sha256:757ec364de4d37cedf30871be2988927660834e656e9aa52aad9ac194814c30c

# Install dumb-init for proper signal handling
RUN apk add --no-cache dumb-init curl
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/examples/kubernetes-vpa/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine
FROM node:22-alpine@sha256:757ec364de4d37cedf30871be2988927660834e656e9aa52aad9ac194814c30c

WORKDIR /app

Expand Down
Loading