Skip to content
OmniTool
⌘K
History
⎈
Dockerfile Generator
Generate Dockerfiles from preset templates.
Node.js
Python
Go
Nginx
Static HTML
Python Flask
Edit the Dockerfile below as needed.
Dockerfile
Copy
FROM node:20-alpine WORKDIR /app COPY package*.json ./ RUN npm ci --only=production COPY . . EXPOSE 3000 CMD ["node", "index.js"]