Files
devops-directive-docker-course/06-building-container-images/api-node/Dockerfile.3
2023-03-10 15:08:38 -05:00

19 lines
422 B
Docker

# Pin specific version for stability
# Use slim for reduced image size
FROM node:19.6-bullseye-slim
# Specify working directory other than /
WORKDIR /usr/src/app
# Copy only files required to install
# dependencies (better layer caching)
COPY package*.json ./
RUN npm install
# Copy remaining source code AFTER installing dependencies.
# Again, copy only the necessary files
COPY ./src/ .
CMD [ "node", "index.js" ]