Skip to content

Commit

Permalink
added mkdir to build stage
Browse files Browse the repository at this point in the history
  • Loading branch information
dtauer authored Jul 15, 2024
1 parent c0587d6 commit 7156b2f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lessons/05-making-tiny-containers/C-multi-stage-builds.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Make a new Dockerfile, call it `Dockerfile`.
```dockerfile
# build stage
FROM node:20 AS node-builder
RUN mkdir /build
WORKDIR /build
COPY package-lock.json package.json ./
RUN npm ci
Expand Down

0 comments on commit 7156b2f

Please sign in to comment.