Skip to content

Commit

Permalink
Merge pull request dapr#1067 from paulyuk/patch/node-dockerfile
Browse files Browse the repository at this point in the history
Updating node based dockerfiles for linux/arm friendly images
  • Loading branch information
paulyuk committed Jul 25, 2024
2 parents 0d94195 + 35d1ec9 commit 1b591fc
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tutorials/bindings/nodeapp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:17-alpine
FROM node:20-bullseye
WORKDIR /app
COPY . /app
RUN rm -rf ./components
Expand Down
2 changes: 1 addition & 1 deletion tutorials/distributed-calculator/node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine
FROM node:20-bullseye
WORKDIR /usr/src/app
COPY . .
RUN npm install
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine
FROM node:20-bullseye
WORKDIR /usr/src/app
COPY . .
RUN npm install
Expand Down
2 changes: 1 addition & 1 deletion tutorials/hello-kubernetes/node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine
FROM node:20-bullseye
WORKDIR /app
COPY . .
RUN npm install
Expand Down
2 changes: 1 addition & 1 deletion tutorials/pub-sub/node-subscriber/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine
FROM node:20-bullseye
WORKDIR /usr/src/app
COPY . .
RUN npm install
Expand Down
2 changes: 1 addition & 1 deletion tutorials/pub-sub/react-form/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine
FROM node:20-bullseye
WORKDIR /usr/src/app
COPY . .
RUN npm run build
Expand Down
2 changes: 1 addition & 1 deletion tutorials/secretstore/node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:17-alpine
FROM node:20-bullseye
WORKDIR /app
COPY . .
RUN npm install
Expand Down

0 comments on commit 1b591fc

Please sign in to comment.