Skip to content

Deploy apps, AI agents, databases and domains from one place.

Open OnePloy
Applications / Dockerfile deployments
View Markdown

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.

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