A Dockerfile shine fayil mai rubutu da jerin umurni don gina hoton Docker — yana nuna hoton tushe, dogon bukatau, fayilai da za a jigida, da kuma yadda za a aiki aikace-aikacen. Yana sa ginin hoton zai zama maiyaci sake-sakewa da kuma da ake iya daidaita su zuwa nau'i.
Dockerfile mai sauƙi
# 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"]
