File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
content/get-started/workshop Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ for your production build. You can ship the static resources in a static nginx c
182182
183183``` dockerfile
184184# syntax=docker/dockerfile:1
185- FROM node:18 AS build
185+ FROM node:lts AS build
186186WORKDIR /app
187187COPY package* yarn.lock ./
188188RUN yarn install
@@ -194,7 +194,7 @@ FROM nginx:alpine
194194COPY --from=build /app/build /usr/share/nginx/html
195195```
196196
197- In the previous Dockerfile example, it uses the ` node:18 ` image to perform the build (maximizing layer caching) and then copies the output
197+ In the previous Dockerfile example, it uses the ` node:lts ` image to perform the build (maximizing layer caching) and then copies the output
198198into an nginx container.
199199
200200## Summary
You can’t perform that action at this time.
0 commit comments