Dockerfile என்பது Docker image-ஐ உருவாக்குவதற்கான வழிமுறைகளைக் கொண்ட ஒரு text file ஆகும் — இது base image, dependencies, நகலெடுக்க வேண்டிய files மற்றும் application-ஐ எவ்வாறு இயக்குவது என்பதை விவரிக்கிறது. இது image builds-ஐ reproducible மற்றும் version-controllable ஆக்குகிறது.
ஒரு basic 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"]
