Dockerfile એ એક ટેક્સ્ટ ફાઈલ છે જેમાં Docker image બનાવવા માટેના સૂચનાઓ હોય છે — તે બેઝ image, dependencies, કૉપી કરવાની ફાઈલો અને એપ્લિકેશન કેવી રીતે ચલાવવું તેનું વર્ણન કરે છે. તે 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"]
