Skip to content

Commit e46bd4b

Browse files
vale lint
Signed-off-by: Craig Osterhout <craig.osterhout@docker.com>
1 parent 8455a06 commit e46bd4b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

content/guides/nodejs/configure-github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ If you prefer to use the GitHub web interface:
3939

4040
2. Select **set up a workflow yourself**.
4141

42-
This takes you to a page for creating a new GitHub Actions workflow file in your repository. By default, the file is created under `.github/workflows/main.yml`. Change the file name to `build.yml`.
42+
This takes you to a page for creating a new GitHub Actions workflow file in your repository. By default, the file is created under `.github/workflows/main.yml`. Change the filename to `build.yml`.
4343

4444
If you prefer to use your text editor, create a new file named `build.yml` in the `.github/workflows/` directory of your repository.
4545

content/guides/nodejs/containerize.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ In this section, you'll containerize a simple [Express.js](https://expressjs.com
2929

3030
You'll use [Docker Hardened Images](/dhi/) as the base. These are minimal, secure Node.js images maintained by Docker.
3131

32-
This guide focuses on a backend Node.js API. If you're building a standalone frontend application, Docker has dedicated guides for [React.js](/guides/reactjs/), [Vue.js](/guides/vuejs/), [Angular](/guides/angular/), and [Next.js](/guides/nextjs/). If you're building a fullstack app where a single Node.js project includes both the API and a frontend, the [develop topic](develop.md) covers how the Dockerfile adapts for that.
32+
This guide focuses on a backend Node.js API. If you're building a standalone frontend application, Docker has dedicated guides for [React.js](/guides/reactjs/), [Vue.js](/guides/vuejs/), [Angular](/guides/angular/), and [Next.js](/guides/nextjs/). If you're building a full-stack app where a single Node.js project includes both the API and a frontend, the [develop topic](develop.md) covers how the Dockerfile adapts for that.
3333

3434
## Create the application
3535

content/guides/nodejs/develop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ In `compose.yaml`, the new `target: dev` line tells Compose to build and run the
247247

248248
The build step runs `tsc`, which compiles each TypeScript file into a corresponding JavaScript file. [esbuild](https://esbuild.github.io/) is a popular alternative that bundles everything into a single output file and builds significantly faster. To switch, replace the `tsc` call in `package.json` with an esbuild command and update the `COPY --from=dev` path in the production stage to match esbuild's output.
249249

250-
The three-stage structure also adapts to fullstack apps where a single Node.js project includes both the API and a frontend. The two most common cases are below.
250+
The three-stage structure also adapts to full-stack apps where a single Node.js project includes both the API and a frontend. The two most common cases are below.
251251

252252
### React and Vite
253253

0 commit comments

Comments
 (0)