Stackademic

Stackademic is a learning hub for programmers, devs, coders, and engineers. Our goal is to democratize free coding education for the world.

Follow publication

Member-only story

My Docker Cheat Sheet: A Newbie’s Toolkit

David Dal Busco
Stackademic
Published in
4 min readJan 28, 2024

--

Dockerfile

# Use the official Node.js 18 Alpine image as a base
FROM node:18-alpine

# Set the working directory inside the container
WORKDIR /app

# Copy the package.json and package-lock.json
COPY package*.json ./

# Install production dependencies
RUN npm ci

# Copy the application source code
COPY . .

# Command to run the application
CMD ["node", "src/index.js"]

# Expose port 3000
EXPOSE 3000

Building Your Image

docker build . --file Dockerfile -t my-project --platform=linux/amd64

--

--

Published in Stackademic

Stackademic is a learning hub for programmers, devs, coders, and engineers. Our goal is to democratize free coding education for the world.

No responses yet

Write a response