Dockerfile అనేది Docker image ని నిర్మించడానికి సూచనలతో కూడిన టెక్సట్ ఫైల్ — ఇది base image, డిపెండెన్సీలు, కాపీ చేయవలసిన ఫైల్లు మరియు అప్లికేషన్ను ఎలా నడపాలో వివరిస్తుంది. ఇది image నిర్మాణాలను పునరుత్పాదనీయమైనవిగా మరియు సంస్కరణ-నియంత్రణకు లోబడినవిగా చేస్తుంది.
ప్రాథమిక Dockerfile
# FROM — the base image to build on
FROM node:20-alpine
# WORKDIR — set the working directory inside the image
WORKDIR /app
# COPY dependency files first (for better layer caching)
COPY package*.json ./
# RUN — execute a command during the BUILD (install dependencies)
RUN npm install
# COPY the rest of the application code
COPY . .
# EXPOSE — document the port the app listens on
EXPOSE 3000
# CMD — the command to run when a CONTAINER starts
CMD ["node", "server.js"]
