Dockerfile deployments
# Dockerfile deployments OnePloy can build directly from a Dockerfile. ```dockerfile FROM node:22-alpine WORKDIR /app COPY . . RUN npm ci &&…
Dockerfile deployments
OnePloy can build directly from a Dockerfile.
FROM node:22-alpine
WORKDIR /app
COPY . .
RUN npm ci && npm run build
CMD ["npm","start"]Configure ports, health checks, persistent volumes and environment variables from the application resource.
Last updated September 5, 2026